summaryrefslogtreecommitdiffstats
path: root/src/armadillo-test.cpp
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2012-12-05 07:18:54 (GMT)
committerTony Theodore <tonyt@logyst.com>2012-12-05 07:18:54 (GMT)
commit7337ea85eebbba1bb34851fc7cefeaf47a98a003 (patch)
tree414e1c3cf8b97fe49538cfbf0adf7364016e9744 /src/armadillo-test.cpp
parent8daf0f40955bd2f46bff9ab7e9b0f468d66fa97a (diff)
downloadmxe-7337ea85eebbba1bb34851fc7cefeaf47a98a003.zip
mxe-7337ea85eebbba1bb34851fc7cefeaf47a98a003.tar.gz
mxe-7337ea85eebbba1bb34851fc7cefeaf47a98a003.tar.bz2
run make cleanup-style
Diffstat (limited to 'src/armadillo-test.cpp')
-rw-r--r--src/armadillo-test.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/armadillo-test.cpp b/src/armadillo-test.cpp
index da32512..3abff94 100644
--- a/src/armadillo-test.cpp
+++ b/src/armadillo-test.cpp
@@ -9,16 +9,16 @@ using namespace arma;
int main()
{
- mat A = randu<mat>(50,50);
- mat B = trans(A)*A; // generate a symmetric matrix
-
- vec eigval;
- mat eigvec;
-
- // use standard algorithm by default
- eig_sym(eigval, eigvec, B);
-
- // use divide & conquer algorithm
- eig_sym(eigval, eigvec, B, "dc");
- return 0;
+ mat A = randu<mat>(50,50);
+ mat B = trans(A)*A; // generate a symmetric matrix
+
+ vec eigval;
+ mat eigvec;
+
+ // use standard algorithm by default
+ eig_sym(eigval, eigvec, B);
+
+ // use divide & conquer algorithm
+ eig_sym(eigval, eigvec, B, "dc");
+ return 0;
}