First upload of code

This commit is contained in:
2019-04-04 08:35:34 +02:00
commit 41d09392ca
2 changed files with 142 additions and 0 deletions

22
TestCREClass.m Normal file
View File

@ -0,0 +1,22 @@
S=CREClass;
S.Data=randn(100000,1);
S.nBin=(1000);
%% use histogram
S.UseHistProxy=true;
S.Calc;
S
%% Use my aproximation
S.UseHistProxy=false;
S.Calc;
S
std(S.Data)
%% multiply S
S.Data=100*S.Data;
S.UseHistProxy=true;
S.Calc
S
std(S.Data)
%% ones again the "new" way
S.UseHistProxy=false;
S.Calc
S