我的M文件是function y=jiao(t1,t2)
if t1==0&t2==0
y=0;
end
if t1<0&t2>0
y=pi-atan(abs(t2/t1));
end
if t1<0&t2<0
y=pi+atan(t2/t1);
end
在Matlab Fcn模块的参数设置中,即matlab function:下的框中输入为jiao(u(1),u(2))。
仿真时总是出现下面的问题
Error in 'bijiaoer/MATLAB Fcn' while evaluating expression: Undefined command/function 'jiao'.