matlab中如何对某个函数带入多个数值得出结果?比如这个函数 function y=f(x) if x<0 y=x.^2+x-6 elseif x>=0&x<5&x~=2&x~=3 y=x.^2-5*x+6 else y=x.^2-x-1; end 我带入x=[-5.0,-3.0,1.0,2.0,2.5,3.0,5.0
matlab中如何对某个函数带入多个数值得出结果?比如这个函数 function y=f(x) if x<0 y=x.^2+x-6 elseif x>=0&x<5&x~=2&x~=3 y=x.^2-5*x+6 else y=x.^2-x-1; end 我带入x=[-5.0,-3.0,1.0,2.0,2.5,3.0,5.0