我正在尝试使用fplot
.
fplot('3*x*sin(x) - 2*x', [-2*pi 2*pi], 'r')
这是有效的,但下面的命令显示错误。
fplot('diff(3*x*sin(x) - 2*x)', [-2*pi 2*pi], 'g')
显示错误
??? Subscripted assignment dimension mismatch.
Error in ==> fplot at 105
x = xmin+minstep; y(2,:) = feval(fun,x,args{4:end});
请给我一些建议?