updated TestCREClass

This commit is contained in:
Renken 2020-02-21 08:42:07 +01:00
parent 11d91979df
commit 026a3f589f

View File

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