Optical signal intensity detection by Photodiode

6 次查看(过去 30 天)
I am trying to calculate the detected intensity of a photodiode (PD). The signal is supposed to be a pulse with a given shape which I determine through the simulation, defined over a time period, e.g.
x(t)=J(1,t); %Bessel type 1
The photodiode impulse response is a kind of trapezoid which I define along the same time range and multiply it by intensity of the signal
abs(x(t)).^2.
As far as I have understood, the value recorded by PD is the integral of the product over time, as I do
trapz(t,abs(x(t)).^2*trapezoid).
I wanna compare this value (detected by PD) with the peak intensity. Could anyone help me please with this question?
Thanks

回答(1 个)

Pavel Dey
Pavel Dey 2016-1-20
What I understood from your problem is that you want to compare the values of two array in MATLAB. To find out the maximum of intensity you may simply use 'max' function. You can plot the PID data using 'plot' function. Or if you want to visualize the data over time you can simply plot the difference by
>> plot(abs(PID_data-x));
If your query is something else you may rephrase the question in the comments. Someone form the community might answer.

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by