yebushe 发表于 2011-5-6 20:15

如何用MATLAB画出这个图??

如何用MATLAB画出这个图??是用的什么命令,急,谢谢

meiyongyuandeze 发表于 2011-5-6 21:00

用plot画好以后,在图像属性中修改坐标属性,变为对数刻度即可!

zicao1984126 发表于 2011-5-7 18:06

用plot画好以后,在图像属性中修改坐标属性

例如:
t=';
y=exp(-1/3*t).*sin(2*t+3);
y1=exp(-1/3*t);
plot(t,y,'b:*');
xlabel('t');ylabel('y');
hold on
plot(t,y1,'r-');
title('逼近');
legend('y=exp(-1/3*t).*sin(2*t+3)','y1=exp(-1/3*t)',2);
axis(square);
grid on
hold off;http://ulanv.com/attachment/diary/Mon_1105/861_bdc873ef6670051.jpg?44

yebushe 发表于 2011-5-7 20:37

谢谢,plot我知道,改属性我也知道,我想知道的功率谱密度,你是做过悬架的功率谱??

ChaChing 发表于 2011-5-8 17:39

???
help periodogram
help spectrum
...
页: [1]
查看完整版本: 如何用MATLAB画出这个图??