How to plot a graph on frequency domain when i don't have any time parameter?
1 次查看(过去 30 天)
显示 更早的评论
I have plotted a graph in comsoll Frequency vs S11 plot,i need to transform it in frequency domain spectrum.How to do it?
4 个评论
回答(1 个)
Girijashankar Sahoo
2021-5-28
You are calculating return loss parameter with frequency.
Calculate PSD input and PSD of return signal
X(K)=(1/N)*fft(x(n)); PSDX=Pi=abs(X(K)*X(K)')
Y(K)=(1/N)*fft(y(n));PSDY=Pr=abs(Y(K)*Y(K)')
S11= 10log(Pi/Pr)
plot(f,S11)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!