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.

9 views (last 30 days)
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 Comment
jessupj
jessupj on 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.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 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

Categories

Find more on Scripts in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!