Borrar filtros
Borrar filtros

Can anyone tell me where i went wrong in my If elseif else

1 visualización (últimos 30 días)
Tony Hill
Tony Hill el 27 de Abr. de 2014
Editada: Andrew Newell el 28 de Abr. de 2014
Ok im doing this problem: Write a function (named as Exam2_part3.m) to accept a numeric vector and an integer choice as input arguments, in this order. The choice can only be 1 or 2, otherwise display an explanation. If the value of the choice is 1, the function will do “plot(x)”. If the value of the choice is 2, the function will do “disp(x)”. Do this using eval. I wrote out the eval statement and im trying to answer using a if elseif else statement. what am i doing wrong heres my code:
function x = Exam2_part3
x = [1,2];
myCommand = 'plot(x)';
eval(myCommand)
if x = 1;
'plot(x)';
elseif x> 1 < 2
then eval(myCommand)
else x>2;
disp('The choice can only be 1 or 2')
end
if someone could tell me where my error lies that would be very helpful

Respuesta aceptada

Roberto
Roberto el 28 de Abr. de 2014
Please read the relational operators and the if/elseif/else documentation, the problem is your syntax, here's how to properly write the commands, but your code won't work anyway!! I highly recommend you start with the getting started section of matlab. Try THIS
if x == 1
x = 'plot(x)';
elseif (x > 1) && (x < 2 )
eval(myCommand)
elseif x>2
disp('The choice can only be 1 or 2')
end

Más respuestas (0)

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by