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.

7 Ansichten (letzte 30 Tage)
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 Kommentar
jessupj
jessupj am 15 Sep. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 15 Sep. 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

Community Treasure Hunt

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

Start Hunting!

Translated by