Who even knows at this point
This commit is contained in:
@@ -69,17 +69,17 @@ if AddCplot==1,
|
||||
%******MEAN calculation Plot********************
|
||||
%try
|
||||
|
||||
l= Exp(expN).cLmean(cTraceN);
|
||||
r= Exp(expN).cRmean(cTraceN);
|
||||
K= Exp(expN).cKmean(cTraceN);
|
||||
lslow= l + Exp(expN).cLstd(cTraceN); lfast= l - Exp(expN).cLstd(cTraceN);
|
||||
rl= r - Exp(expN).cRstd(cTraceN); ru= r + Exp(expN).cRstd(cTraceN);
|
||||
Kl= K - Exp(expN).cKstd(cTraceN); Ku= K + Exp(expN).cKstd(cTraceN);
|
||||
l=Exp(expN).cLmean(cTraceN);
|
||||
r=Exp(expN).cRmean(cTraceN);
|
||||
K=Exp(expN).cKmean(cTraceN);
|
||||
lslow=l + Exp(expN).cLstd(cTraceN); lfast= l - Exp(expN).cLstd(cTraceN);
|
||||
rl=r - Exp(expN).cRstd(cTraceN); ru= r + Exp(expN).cRstd(cTraceN);
|
||||
Kl=K - Exp(expN).cKstd(cTraceN); Ku= K + Exp(expN).cKstd(cTraceN);
|
||||
clear g;
|
||||
t=1:200;
|
||||
g = K ./ (1 + exp(-r.* (t - l )));
|
||||
gSlow= Kl ./ (1 + exp(-rl.* (t - lslow )));
|
||||
gFast= Ku ./ (1 + exp(-ru.* (t - lfast )));
|
||||
g=K ./ (1 + exp(-r.* (t - l )));
|
||||
gSlow=Kl ./ (1 + exp(-rl.* (t - lslow )));
|
||||
gFast=Ku ./ (1 + exp(-ru.* (t - lfast )));
|
||||
if K==0||r==0||l==0, g(1:200)=1;gSlow(1:200)=1;gFast(1:200)=1;end
|
||||
|
||||
Exp(expN).hCmean(cTraceN)=plot(OLaxes,t,g);hold on; %PLOT the composit mean of traces
|
||||
|
||||
Reference in New Issue
Block a user