Is it possible to have a source code to reproduce the issue ?
Alain Verleyen #:
Is it possible to have a source code to reproduce the issue ?
Is it possible to have a source code to reproduce the issue ?
yes
int OnInit() { EventSetMillisecondTimer(44); return(INIT_SUCCEEDED); } void OnTimer(){ EventKillTimer(); matrix original; //original.Init(160,10);//works original.Init(16000,1000);//fails for(int r=0;r<original.Rows();r++){ for(int c=0;c<original.Cols();c++){ original[r][c]=((double)MathRand())/((double)32767.0); } } Print("Values filled"); matrix covariance_matrix=original.Cov(false); Print("DONE"); ExpertRemove(); } void OnDeinit(const int reason) { } void OnTick() { }
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Is there a size limit on the covariance matrix library ?
948 features x 16000 samples