Matlab if elseif else条件语句如何使用?

a=1;

if a<1

b=1000;

elseif a<3

b=1500;

else

b=2000;

end
原文地址:https://www.cnblogs.com/chuqianyu/p/13709268.html