#include <cctype>
#include <iomanip>
#include <istream>
#include <ostream>
#include <sstream>
#include <string>
#include "byte-swap.h"
#include "dMatrix.h"
#include "data-conv.h"
#include "file-ops.h"
#include "glob-match.h"
#include "lo-mappers.h"
#include "mach-info.h"
#include "oct-env.h"
#include "oct-time.h"
#include "quit.h"
#include "Cell.h"
#include "defun.h"
#include "error.h"
#include "interpreter-private.h"
#include "interpreter.h"
#include "lex.h"
#include "load-save.h"
#include "ls-ascii-helper.h"
#include "ls-mat-ascii.h"
#include "oct-map.h"
#include "ov-cell.h"
#include "ov.h"
#include "pager.h"
#include "sysdep.h"
#include "utils.h"
#include "variables.h"
#include "version.h"
Go to the source code of this file.
Functions | |
static void | get_lines_and_columns (std::istream &is, octave_idx_type &nr, octave_idx_type &nc, const std::string &filename="", bool quiet=false, bool check_numeric=false) |
static std::string | get_mat_data_input_line (std::istream &is) |
bool | looks_like_mat_ascii_file (std::istream &is, const std::string &filename) |
std::string | read_mat_ascii_data (std::istream &is, const std::string &filename, octave_value &tc) |
bool | save_mat_ascii_data (std::ostream &os, const octave_value &val, int precision, bool tabs) |
|
static |
Definition at line 109 of file ls-mat-ascii.cc.
References error(), get_mat_data_input_line(), and octave_read_double().
Referenced by looks_like_mat_ascii_file(), and read_mat_ascii_data().
|
static |
Definition at line 68 of file ls-mat-ascii.cc.
References retval, skip_preceeding_newline(), and skip_until_newline().
Referenced by get_lines_and_columns(), and read_mat_ascii_data().
bool looks_like_mat_ascii_file | ( | std::istream & | is, |
const std::string & | filename | ||
) |
Definition at line 401 of file ls-mat-ascii.cc.
References get_lines_and_columns(), and retval.
Referenced by octave::load_save_system::get_file_format().
std::string read_mat_ascii_data | ( | std::istream & | is, |
const std::string & | filename, | ||
octave_value & | tc | ||
) |
Definition at line 230 of file ls-mat-ascii.cc.
References d, Array< T >::elem(), error(), get_lines_and_columns(), get_mat_data_input_line(), octave::iskeyword(), len, and octave::valid_identifier().
Referenced by octave::load_save_system::load_vars().
bool save_mat_ascii_data | ( | std::ostream & | os, |
const octave_value & | val, | ||
int | precision, | ||
bool | tabs | ||
) |
Definition at line 337 of file ls-mat-ascii.cc.
References octave::__get_interpreter__(), octave_value::iscomplex(), m, octave_value::matrix_value(), octave_value::ndims(), octave_write_double(), octave::interpreter::recover_from_exception(), and warning().
Referenced by octave::load_save_system::do_save().