view examples/standalone.cc @ 15844:8f0d07f8390b

Fix assertions with "observed" and "expected" out of order. * scripts/io/strread.m: "observed" and "expected" out of order for 2 tests.
author Ben Abbott <bpabbott@mac.com>
date Mon, 24 Dec 2012 18:49:37 -0500
parents 4295d634797d
children be41c30bcb44
line wrap: on
line source

#include <iostream>
#include <octave/oct.h>

int
main (void)
{
  std::cout << "Hello Octave world!\n";
  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;
  return 0;
}