Info
此问题已关闭。 请重新打开它进行编辑或回答。
Can I use whether or not a function runs as a conditional statement?
1 次查看(过去 30 天)
显示 更早的评论
I need some commands to execute if a pushbutton is pressed while certain other conditions are true. How can I write in a conditional statement "if y and z are true(conditions) and some function has run, then execute these commands" in coding form? This is in a GUI by the way if that helps.
0 个评论
回答(1 个)
elham kreem
2018-3-8
编辑:elham kreem
2018-3-8
this is a short example ; if the first condition is true :
x= 2 ; y = 3;
if (x+y)>4
disp x , disp y
else x-y
end
********************** now if the first condition is wrong :
if (x+y)> 5
disp x , disp y
else x-y
end
1 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!