chinese腹肌校草洗澡小说_中文无码天天av天天爽_飘雪影院免费版在线观看视频_成全视频高清免费观看在线播放_大地资源中文在线观看官网第二页_军人各种做高h尿在里面_亂伦丰满人妻av怡红院_欧美中字狠狠第一页_小收影院 成人a片产无码免费视频奶头

Matlab繪圖示例

share

Matlab繪圖示例

matlab下繪圖的簡(jiǎn)單示例示例一(用plot同時(shí)繪制兩條曲線)x=0:0.01:2*piplot(x,sin(x),'green')hold onplot(x,sin(2*x),'red')示例二(用stem繪制多個(gè)序列)n=0:50; A=444.128;a=50*sqrt(2.0)*pi;T=0.001; w0=50*sqrt(2.0)*pi;x=444.128*exp(-a*n*T).*sin(w0*n*T); X=fft(x);% Draw x,abs(X),angle(X)hold onstem(x)stem(abs(X),'fill','r-.')stem(angle(X),'fill','g-.')示例三(從復(fù)平面看幅頻特性)th = (0:127)/128*2*pi;x = cos(th);y = sin(th);f = abs(fft(ones(10,1),128));stem3(x,y,f','d','fill')view([-65 30])xlabel('Real')ylabel('Imaginary')zlabel('Amplitude')TItle('Magnitude Frequency Response')rotate3d on 200多個(gè)MATLAB經(jīng)典教程和MATLAB論文請(qǐng)查看matlab教程
share