You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to get Armadillo to compile: http://arma.sourceforge.net/
Using the github pages branch locally, taking the armadillo download, and repackaging it as a zip:
// cib:{"fetch":"armadillo-9.200.7.zip", "system_includes":["include"], "unzip_compiler":true}
#defineARMA_DONT_USE_LAPACK
#defineARMA_DONT_USE_BLAS
#defineARMA_DONT_USE_NEWARP
#defineARMA_DONT_USE_ARPACK
#defineARMA_DONT_USE_SUPERLU
#defineARMA_DONT_USE_HDF5
#defineARMA_DONT_USE_OPENMP
#include<armadillo>
#include<stdio.h>usingnamespacestd;usingnamespacearma;intmain() {
mat A = randu<mat>(4,5);
mat B = randu<mat>(4,5);
printf("%f\n", A[0]);
return0;
}
I had to use the printf instead of the examples cout << A*B.t() << endl; because of #17
Having this available in the browser could be really useful!
The text was updated successfully, but these errors were encountered:
This project is really interesting!
I was able to get Armadillo to compile: http://arma.sourceforge.net/
Using the github pages branch locally, taking the armadillo download, and repackaging it as a zip:
I had to use the printf instead of the examples
cout << A*B.t() << endl;
because of #17Having this available in the browser could be really useful!
The text was updated successfully, but these errors were encountered: