0
我想繪製f(x)=5xcos(x)-x
,它是使用MATLAB在-2pi < = x < = 2pi的同一曲線圖中的一階導數。但我得到了如下因素的錯誤:matlab中的向量必須是相同的長度誤差
Error using ==> plot Vectors must be the same lengths."
y1 = 5.*x.*cos(x)-x;
y2 = diff(y1);
plot(x,y1,'-',x,y2,'-*')
我該怎麼辦?