Input

2 次查看(过去 30 天)
Nasir Qazi
Nasir Qazi 2012-3-11
I want to manually assigned a value to T like this
T = input('Enter the value');
Tc = 256
Question if the enter value T > Tc the error comes up and stop to program to move forward. How can I do that.

采纳的回答

Image Analyst
Image Analyst 2012-3-11
T = input('Enter the value ')
Tc = 256
if T == Tc
msgbox('T = TC');
return; % or break or continue, depending on what you want...
else
msgbox('T not = Tc');
end
  2 个评论
Nasir Qazi
Nasir Qazi 2012-3-11
I don't want a msg to appear on want to execute the program if T < Tc otherwise stop the program
Image Analyst
Image Analyst 2012-3-11
So take it out. You know you can adapt my demo code as you wish. If you don't want the msgbox, don't use it.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by