Regarding 'Or' condition in if statement., this code is running in Octave but not in Matlab. Could anyone help, how to make it work in Matlab. This is just an eg.

11 visualizaciones (últimos 30 días)
clear all;
close all;
clc;
Question = input('Would you like to continue, [Y/N] \n','s')
if (Question=='Y') || (Question=='y')
a= 2*2
elseif (Question=='N') || (Question=='n')
b=3*3
end
  1 comentario
jessupj
jessupj el 15 de Sept. de 2021
maybe:
if ( (Question=='Y') || (Question=='y') )
...
you didn't indicate what the error was. ie is it a problem with the double-bar or vs single-bar, or one with the if statment check.

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 15 de Sept. de 2021
It works perfectly fine, though in MATLAB we'd do it like this:
clear all;
close all;
clc;
Question = input('Would you like to continue [Y or N]?\n', 's')
if strcmpi(Question(1), 'Y')
a = 2 * 2
else
b = 3 * 3
end

Categorías

Más información sobre Scripts en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by