matlab program drawing style
조회 수: 1 (최근 30일)
이전 댓글 표시


Why the following matlab program can not run the right picture inside the complete waveform, only the right picture waveform half, any elder brother know
clc;clear;
x=load('d1-1.txt');%加载数据
y=load('d1-2.txt');
fs=1e6;
T=1./fs;
L=32768;
t=(0:L-1)*T;
d1=fft(x);d2=fft(y);
D=d1.*conj(d2);
E=abs(D);F=1./E;
%N=length(F);G=F(1:fix(N/2));
H=ifft(F);
figure;plot(t,H);
댓글 수: 1
Mitchell Thurston
2024년 3월 29일
I'm not sure what you're asking exactly, but in your plot(t,H), the variable t is entirely positive.
답변 (1개)
Steven Lord
2024년 3월 29일
Note the scale of the Y axis in your plot. Around t = 0 and t = 0.033 the value of D must get very small in magnitude, leading to 1./E being (relatively speaking) very large. That leads to the Y limits being on the order of 100 rather than on the order of 0.1.
If you were to set the Y axis limits of your plot with the ylim function to the same limits as in your pictures, it might look more like them.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!