Help with error command and user input
3 ビュー (過去 30 日間)
古いコメントを表示
Below I have a simple user input asking for an angle. I am currently displaying an error if the user does not pick a valid angle, they will then have to rerun the code in order to try again. I am trying to have a while loop that doesn't continue on until the statement is true but I am having trouble with my arguments. I originally tried,
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
while A ~= [15 30 45 60]
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
if A ~= [15 30 45 60]
error('angle must be 15, 30, 45, or 60 degrees');
end
end
but this brings a problem because the if statement is never reached. Currently i have
A = input('Pick an angle 15, 30, 45, or 60 angle = ');
if A ~= ([15 30 45 60])
error('angle must be 15, 30, 45, or 60 degrees ');
end
any help is appreciated.
3 件のコメント
回答 (1 件)
Sriram Tadavarty
2020 年 4 月 18 日
Hi Stieve,
You can try running the infinite loop, till the input provided is one of the valid values.
Once, you place the error in the code, the execution stops. Indeed you can place the message with the disp command.
Here is the way the code can be placed.
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
while (1)
if any(A == [15 30 45 60])
break;
else
disp('angle must be 15, 30, 45, 0r 60 degrees') % This is to indicate what the valid values are
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
end
end
Hope this helps.
Regards,
Sriram
2 件のコメント
Sriram Tadavarty
2020 年 4 月 18 日
If you use error command, then they have to restart the code. You can use warning or disp as suggested.
error will stop the execution once it reaches it.
Hope this helps.
Regards,
Sriram
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!