该命令返回只是将控件返回到调用函数。
【MATLAB return语句】例:
function animatebar (t0, tf, x0);
% animatebar animates a bar pendulum. : disp ('Do you want to see the phase portrait?') ans = input ('Enter 1 if YES, 0 if NO');
if ans==0% see text for descriptionreturn% if the input is 0% exit function elseplot (x, ......)% show the phase plot end
推荐阅读
- MATLAB错误控制语句try-catch
- MATLAB break语句
- MATLAB continue语句
- 快速安装MATLAB详细步骤
- MATLAB while循环语句
- MATLAB嵌套循环语句
- MATLAB for循环语句
- MATLAB中的工作区,变量和函数
- MATLAB循环语句