Octave load: Difference between revisions

151 bytes removed ,  21 June 2013
no edit summary
No edit summary
No edit summary
Line 19: Line 19:
std::fstream file;
std::fstream file;
std::ios::openmode m = std::ios::in;
std::ios::openmode m = std::ios::in;
bool check_gzip_magic (const std::string& fname);
bool fexists (const std::string& fname);
load_save_format format = LS_BINARY;
load_save_format format = LS_BINARY;
oct_mach_info::float_format flt_fmt = oct_mach_info::flt_fmt_unknown;
oct_mach_info::float_format flt_fmt = oct_mach_info::flt_fmt_unknown;
Line 27: Line 25:
int main (void)
int main (void)
{
{
  int mode = 1;
  double **data;
  int *rank;
  int **shape;
   string_vector argv (1);
   string_vector argv (1);


Line 72: Line 66:


$ mkoctfile --link-stand-alone octave_binary_io_example.cc
$ mkoctfile --link-stand-alone octave_binary_io_example.cc
$ ./a.ut
$ ./a.out


</syntaxhighlight>}}
</syntaxhighlight>}}
1

edit