How to plot a graph on frequency domain when i don't have any time parameter?
Show older comments
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 Comments
Walter Roberson
on 28 May 2021
What input do you have? You have a signal? The distance between adjacent entries in the signal corresponds to how many of what units?
shahriar sowad
on 28 May 2021
Walter Roberson
on 28 May 2021
plot(frequency_values, S11)
??
shahriar sowad
on 29 May 2021
Answers (1)
Girijashankar Sahoo
on 28 May 2021
0 votes
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)
1 Comment
shahriar sowad
on 28 May 2021
Categories
Find more on Fourier Analysis and Filtering in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!