MATLAB学习——常用语句
- if语句
- if end
- if else
- if elseif
- switch语句
- for语句
- while语句
if语句
if end
n = input('n=');
if rem(n,2) == 0A = 'even'
end
if else
n = input('n='); #输入空数组判断为odd
if rem(n,2) == 0A = 'even'
elseA = 'odd'
end
if elseif
n = input('n=');
if rem(n,2) == 0;'even'
elseif rem(n,2) == 1;'odd'
else'empty'
end
switch语句
if语句判断分支可以用表达式,switch语句是枚举
n = input('n=')
switch rem(n,2);case 1'odd'case 0'even'otherwise'empty'
end
for语句
对容器进行遍历,一般在确定循环次数的情况下使用
sum_m = 0
for m = 2:2:999sum_m = sum_m + m;
end
sum_m
#等同于
sum_m1 = sum(2:2:999)
while语句
根据逻辑进行循环,一般在不确定循环次数的情况下使用
x = 1
while x~=inf #inf,infinity,表示matlab中最大实数x1 = xx = 2*x
end
x1