// OCTAVE_MATRIX.CC // This is my first crack at using matrices from the octave library. // I hope to God that this works, because I really don't want to have // to implement a matrix class as well. #include /* This should be all that I have to include. */ int array_test(void) { // We'll start out with some arrays. Array da(1.0); Array ia; return 0; } int main(void) { array_test(); return 0; }