5 lines
94 B
Matlab
5 lines
94 B
Matlab
% 24110901003
|
|
a=3;
|
|
b=a>5 % 表达式值为0
|
|
a(b)=sqrt(a(b)) % 值为3
|
|
a(~b)=a(~b).^2 % 值为9 |