vtb7_1.m

来自「在MATLAB中开发震动相关仿真时需要用到的」· M 代码 · 共 25 行

M
25
字号
function VTB7_1%VTB7_1 is an example of taking a power spectral density% of data. The power spectral density of a signal containing% .5 Hz and 1.59 Hz signals is plotted.t=0:.1:100;t=t';y=sin(pi*t)+sin(10*t);figureaa=version;ll=length(aa);plot(t,y);title('Sin(pi*t)+Sin(10*t) versus Time')xlabel('Time')ylabel('F(t)')x=fft(y,512);grid onpausePyy=x.*conj(x)/512;f=10*(0:255)/512;plot(f,Pyy(1:256))grid ontitle('Power Spectral Density of F(t)')xlabel('Frequency (Hz)')ylabel('Power Spectral Density')pause

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?