matlab定义分段函数
问题描述:
matlab定义分段函数
例如 x>=0 f(x)=2x^2-3sin(x)
x
答
function y=f(x)
y=zeros(size(x));
[m n]=size(x);
for a=1:m
for b=1:n
if x(a,b)