updated TestCREClass

This commit is contained in:
Renken 2020-02-21 08:42:07 +01:00
parent 11d91979df
commit 026a3f589f
1 changed files with 12 additions and 5 deletions

View File

@ -21,8 +21,15 @@ S.UseHistProxy=false;
S.Calc;
S
%% Test CCRE class
CS=CCREClass;
CS.Data=randn(100,1);
CS.nBin=10;
CS.DataRef=randn(100,1);
CS.nBinRef=10;
figure(1);clf;hold on
A=randn(10);
B=randn(10);
for k=-1:0.1:1
CS=CCREClass;
CS.Data=(1-abs(k))*A+k*B;
CS.nBin=100;
CS.DataRef=B;
CS.nBinRef=50;
CS.Calc;
plot(k,CS.CCRE,'o')
end