diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2018-11-18 02:48:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-12-06 19:16:44 (GMT) |
commit | 170bcb6fdca5942d0484042ad38c09b420554792 (patch) | |
tree | bf5798b7ff6bee823e38af4f79594861a86568bb /Tests/FindOctave/Test/main.cpp | |
parent | 81bea69bd1d52977c3782d26560f34563394f487 (diff) | |
download | CMake-170bcb6fdca5942d0484042ad38c09b420554792.zip CMake-170bcb6fdca5942d0484042ad38c09b420554792.tar.gz CMake-170bcb6fdca5942d0484042ad38c09b420554792.tar.bz2 |
FindOctave: Add module to find GNU octave
Diffstat (limited to 'Tests/FindOctave/Test/main.cpp')
-rw-r--r-- | Tests/FindOctave/Test/main.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/FindOctave/Test/main.cpp b/Tests/FindOctave/Test/main.cpp new file mode 100644 index 0000000..68270b1 --- /dev/null +++ b/Tests/FindOctave/Test/main.cpp @@ -0,0 +1,18 @@ +#include <iostream> +#include <oct.h> + +// http://www.dm.unibo.it/~achilles/calc/octave.html/Standalone-Programs.html +int main(void) +{ + int n = 2; + Matrix a_matrix = Matrix(n, n); + for (octave_idx_type i = 0; i < n; i++) { + for (octave_idx_type j = 0; j < n; j++) { + a_matrix(i, j) = (i + 1) * 10 + (j + 1); + } + } + + std::cout << a_matrix << std::endl; + + return EXIT_SUCCESS; +} |