Hello Everybody,
I'm trying to plot the frequency spectrum of RIN using Matlab.
I've the following code
function p=rateblock
tau_s = 3e-9;
N0 = 1e24;
A =1e-12;
P0 = 1/(A*tau_s);
TSPAN = 0:1e-2:10.23;;
Y0 =[0 0];
[T,Y] = ODE45(@rate_equation,TSPAN,Y0);
subplot(2,1,1)...