Filter löschen
Filter löschen

I have a power density plot with the below matlab code. I want to find the 3dB bandwidth of it. Can someone help me to solve this matter

1 Ansicht (letzte 30 Tage)
%%PARAMETERS
D = 1*10^6;
vi = 10^6;
r = 10^4;
%%RANGE
w = linspace(0.9*10^6,1.1*10^6,211);
%%EQUATION
b = 0.7;
syms m n;
Y1 = (((D/(4.*b))^m)*((2*m.*b)+(r/2)))./(factorial(m)*(((2*m.*b)+(r/2))^2+(w-vi).^2));
Y = symsum(Y1, m, 0, 10);
%%PLOT
plot(w-vi,Y,'blue');
xlabel('Frequency Detuning (Hz)');
ylabel ('Relative Power Density');

Antworten (1)

Sai Charan Sampara
Sai Charan Sampara am 28 Jun. 2022
Bearbeitet: Sai Charan Sampara am 28 Jun. 2022
Convert the power density into logarithm scale. Use the max function to find the maximum power density in dB. The value of (maximum-3) dB is cut off power density value. Then use the logical equation index=frequency==maximum-3 to get the indices of the frequency values. There should be two values of frequency for which this holds true. Both the upper and lower cut off frequencies can be accessed by frequency(index). Their difference gives 3dB bandwidth in Hertz.

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by