Avoid infinity in the answer

2 views (last 30 days)
Hi,
I am trying to run this code and, I always get infinity for my first iteration. Is there a way to avoid that? or at least filter that answers which gives infinity.
for i=1:M %for loop for M repetitions
Nx=N+randn(1,M)*CN; %excitation photon fluctuation
Nt=Nx*10.^-(E*C*l); %Nt = transmitted photons
SD2=sqrt(Nt); %This relationship is only valid for a Poisson distribution.
Nt1=Nt+randn(1,1)*SD2; %Nt = transmitted photon fluctuation
Nt2=mean(Nt1)+sqrt(Nt1)*randn(1,1); %detected photon fluctuation
A(i)=-log(Nt2/Nx); %calculation of absorbance
meanA=mean(A); %mean absorbance signal
standdeviationA=std(A); %noise
SNRUV(i)=meanA/standdeviationA %1/RSD=Signal to noise ratio for absorbance
end
  4 Comments
Star Strider
Star Strider on 9 Feb 2019
Reiterating:
What are the variable values (‘M’,‘CN’,‘E’), etc.?
Knowing the relevant function arguments is important. We could make wild guesses for them and never come close to the expected values for them.
Chanaka Navarathna
Chanaka Navarathna on 9 Feb 2019
N,E,C,Q,f,l,CN,M = 1000000,10000,10*10^-6,0.6,0.01,1,1000, 10 respectively

Sign in to comment.

Accepted Answer

John D'Errico
John D'Errico on 9 Feb 2019
Edited: John D'Errico on 9 Feb 2019
Sorry. I had a typo in what I entered before.
The first time through the loop. what do you expect?
A is a scalar on the first time throguh. What is the standard deviationm of a scalar variable? ZERO.
Then you divide by that standard deviation, so you get inf. Only you know what it is that you SHOULD do in that case.
  1 Comment
Chanaka Navarathna
Chanaka Navarathna on 11 Feb 2019
Took the SNR calculation out from the loop and it was resolved. Thank you.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!