26 #if defined (HAVE_CONFIG_H)
109 "real matrix",
"real scalar");
121 "real matrix",
"real scalar");
147 "real matrix",
"complex scalar");
163 "real matrix",
"complex scalar");
319 error (
"diag: expecting vector argument");
356 ::warning (
"range error for conversion to character value");
361 chm(i) =
static_cast<char> (ival);
378 os <<
"# ndims: " << dv.
ndims () <<
"\n";
380 for (
int i=0; i < dv.
ndims (); i++)
389 os <<
"# rows: " <<
rows () <<
"\n"
390 <<
"# columns: " <<
columns () <<
"\n";
403 keywords[0] =
"ndims";
404 keywords[1] =
"rows";
410 error (
"load: failed to extract number of rows and columns");
414 int mdims =
static_cast<int> (val);
417 error (
"load: failed to extract number of dimensions");
422 for (
int i = 0; i < mdims; i++)
426 error (
"load: failed to read dimensions");
433 error (
"load: failed to load matrix constant");
437 else if (kw ==
"rows")
443 error (
"load: failed to extract number of rows and columns");
445 if (nr > 0 && nc > 0)
450 error (
"load: failed to load matrix constant");
454 else if (nr == 0 || nc == 0)
473 int32_t tmp = - dv.
ndims ();
474 os.write (
reinterpret_cast<char *
> (&tmp), 4);
475 for (
int i = 0; i < dv.
ndims (); i++)
478 os.write (
reinterpret_cast<char *
> (&tmp), 4);
483 if (dv.
numel () > 8192)
485 float max_val, min_val;
486 if (
m.all_integers (max_val, min_val))
490 const float *mtmp =
m.data ();
502 if (! is.read (
reinterpret_cast<char *
> (&mdims), 4))
513 for (
int i = 0; i < mdims; i++)
515 if (! is.read (
reinterpret_cast<char *
> (&di), 4))
534 if (! is.read (
reinterpret_cast<char *
> (&tmp), 1))
538 float *re =
m.fortran_vec ();
551 if (! is.read (
reinterpret_cast<char *
> (&nc), 4))
555 if (! is.read (
reinterpret_cast<char *
> (&tmp), 1))
558 float *re =
m.fortran_vec ();
575 #if defined (HAVE_HDF5)
582 int rank = dv.
ndims ();
583 hid_t space_hid, data_hid;
584 space_hid = data_hid = -1;
590 for (
int i = 0; i < rank; i++)
591 hdims[i] = dv(rank-i-1);
593 space_hid = H5Screate_simple (rank, hdims,
nullptr);
595 if (space_hid < 0)
return false;
597 hid_t save_type_hid = H5T_NATIVE_FLOAT;
599 #if defined (HAVE_HDF5_INT2FLOAT_CONVERSIONS)
603 float max_val, min_val;
605 if (
m.all_integers (max_val, min_val))
610 #if defined (HAVE_HDF5_18)
611 data_hid = H5Dcreate (loc_id,
name, save_type_hid, space_hid,
614 data_hid = H5Dcreate (loc_id,
name, save_type_hid, space_hid,
619 H5Sclose (space_hid);
623 float *mtmp =
m.fortran_vec ();
628 H5Sclose (space_hid);
631 octave_unused_parameter (loc_id);
632 octave_unused_parameter (
name);
645 #if defined (HAVE_HDF5)
654 #if defined (HAVE_HDF5_18)
657 hid_t data_hid = H5Dopen (loc_id,
name);
659 hid_t space_id = H5Dget_space (data_hid);
661 hsize_t rank = H5Sget_simple_extent_ndims (space_id);
673 H5Sget_simple_extent_dims (space_id, hdims, maxdims);
685 for (hsize_t i = 0, j = rank - 1; i < rank; i++, j--)
690 float *re =
m.fortran_vec ();
702 octave_unused_parameter (loc_id);
703 octave_unused_parameter (
name);
713 bool pr_as_read_syntax)
const
724 float *pr =
static_cast<float *
> (
retval->get_data ());
730 for (
mwIndex i = 0; i < nel; i++)
750 if (tmp.imag () == 0.0)
751 rr.
xelem (i) = tmp.real ();
765 rc.
xelem (j) = fcn (a(j));
788 #define ARRAY_METHOD_MAPPER(UMAP, FCN) \
789 case umap_ ## UMAP: \
790 return octave_value (matrix.FCN ())
797 #define ARRAY_MAPPER(UMAP, TYPE, FCN) \
798 case umap_ ## UMAP: \
799 return octave_value (matrix.map<TYPE> (FCN))
801 #define RC_ARRAY_MAPPER(UMAP, TYPE, FCN) \
802 case umap_ ## UMAP: \
803 return do_rc_map (matrix, FCN)
864 return str_conv.
map (umap);
void swap_bytes< 4 >(void *ptr)
charNDArray max(char d, const charNDArray &m)
void resize(const dim_vector &dv, const T &rfv)
Size of the specified dimension.
octave_idx_type columns(void) const
T & xelem(octave_idx_type n)
Size of the specified dimension.
octave_idx_type numel(void) const
Number of elements in the array.
T & elem(octave_idx_type n)
Size of the specified dimension.
const T * data(void) const
Size of the specified dimension.
octave_idx_type rows(void) const
const dim_vector & dims(void) const
Return a const-reference so that dims ()(i) works efficiently.
int ndims(void) const
Size of the specified dimension.
FloatMatrix diag(octave_idx_type k=0) const
bool any_element_is_nan(void) const
bool any_element_not_one_or_zero(void) const
Vector representing the dimensions (size) of an Array.
octave_idx_type numel(int n=0) const
Number of elements that a matrix with this dimensions would have.
void resize(int n, int fill_value=0)
octave_idx_type ndims(void) const
Number of dimensions.
octave_idx_type numel(void) const
octave_value diag(octave_idx_type k=0) const
dim_vector dims(void) const
octave_idx_type columns(void) const
int current_print_indent_level(void) const
virtual octave_value map(unary_mapper_t) const
virtual octave_value convert_to_str(bool pad=false, bool force=false, char type='\'') const
void warn_load(const char *type) const
octave_idx_type rows(void) const
friend class octave_value
void warn_save(const char *type) const
FloatNDArray float_array_value(bool=false) const
ComplexNDArray complex_array_value(bool=false) const
charNDArray char_array_value(bool=false) const
octave_value as_int64(void) const
bool save_binary(std::ostream &os, bool save_as_floats)
mxArray * as_mxArray(void) const
octave_value as_uint8(void) const
octave_value map(unary_mapper_t umap) const
ComplexMatrix complex_matrix_value(bool=false) const
FloatComplex float_complex_value(bool=false) const
octave_value as_int16(void) const
FloatMatrix float_matrix_value(bool=false) const
void print_raw(std::ostream &os, bool pr_as_read_syntax=false) const
bool load_binary(std::istream &is, bool swap, octave::mach_info::float_format fmt)
bool save_hdf5(octave_hdf5_id loc_id, const char *name, bool save_as_floats)
octave_value as_uint64(void) const
octave_value as_uint16(void) const
bool save_ascii(std::ostream &os)
octave_value as_int8(void) const
double double_value(bool=false) const
FloatComplexNDArray float_complex_array_value(bool=false) const
Complex complex_value(bool=false) const
bool load_hdf5(octave_hdf5_id loc_id, const char *name)
SparseComplexMatrix sparse_complex_matrix_value(bool=false) const
Matrix matrix_value(bool=false) const
octave_value as_uint32(void) const
octave_value convert_to_str_internal(bool pad, bool force, char type) const
octave_value diag(octave_idx_type k=0) const
octave_value as_int32(void) const
octave_value as_double(void) const
octave_base_value * try_narrowing_conversion(void)
octave_value as_single(void) const
boolNDArray bool_array_value(bool warn=false) const
float float_value(bool=false) const
SparseMatrix sparse_matrix_value(bool=false) const
bool load_ascii(std::istream &is)
NDArray array_value(bool=false) const
FloatComplexMatrix float_complex_matrix_value(bool=false) const
octave_value map(octave_base_value::unary_mapper_t umap) const
const octave_hdf5_id octave_H5P_DEFAULT
const octave_hdf5_id octave_H5S_ALL
void write_floats(std::ostream &os, const float *data, save_type type, octave_idx_type len)
void read_floats(std::istream &is, float *data, save_type type, octave_idx_type len, bool swap, octave::mach_info::float_format fmt)
void warning(const char *fmt,...)
void error(const char *fmt,...)
#define panic_impossible()
void err_invalid_conversion(const std::string &from, const std::string &to)
void warn_logical_conversion(void)
void warn_implicit_conversion(const char *id, const char *from, const char *to)
intNDArray< octave_int16 > int16NDArray
intNDArray< octave_int32 > int32NDArray
intNDArray< octave_int64 > int64NDArray
intNDArray< octave_int8 > int8NDArray
float lo_ieee_float_nan_value(void)
F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d
int save_hdf5_empty(octave_hdf5_id loc_id, const char *name, const dim_vector &d)
int load_hdf5_empty(octave_hdf5_id loc_id, const char *name, dim_vector &d)
octave_hdf5_id save_type_to_hdf5(save_type st)
std::string extract_keyword(std::istream &is, const char *keyword, const bool next_only)
save_type get_save_type(double, double)
std::complex< double > erfc(std::complex< double > z, double relerr=0)
std::complex< double > erfcx(std::complex< double > z, double relerr=0)
std::complex< double > erfi(std::complex< double > z, double relerr=0)
std::complex< double > erf(std::complex< double > z, double relerr=0)
Complex atan(const Complex &x)
Complex rc_acos(double x)
Complex log1p(const Complex &x)
Complex acos(const Complex &x)
Complex asin(const Complex &x)
Complex rc_log2(double x)
Complex erfc(const Complex &x)
Complex rc_sqrt(double x)
Complex rc_atanh(double x)
std::complex< T > ceil(const std::complex< T > &x)
Complex rc_acosh(double x)
Complex rc_log1p(double x)
Complex rc_log10(double x)
Complex rc_lgamma(double x)
Complex rc_asin(double x)
Complex log2(const Complex &x)
std::complex< T > floor(const std::complex< T > &x)
Complex erf(const Complex &x)
Complex expm1(const Complex &x)
void err_nan_to_logical_conversion(void)
void err_nan_to_character_conversion(void)
std::complex< double > Complex
std::complex< float > FloatComplex
#define OCTAVE_LOCAL_BUFFER(T, buf, size)
#define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n, c)
static octave_value do_rc_map(const FloatNDArray &a, FloatComplex(&fcn)(float))
#define RC_ARRAY_MAPPER(UMAP, TYPE, FCN)
#define ARRAY_MAPPER(UMAP, TYPE, FCN)
#define ARRAY_METHOD_MAPPER(UMAP, FCN)
octave_value::octave_value(const Array< char > &chm, char type) return retval
void octave_print_internal(std::ostream &os, const float_display_format &fmt, bool d, bool pr_as_read_syntax)
intNDArray< octave_uint16 > uint16NDArray
intNDArray< octave_uint32 > uint32NDArray
intNDArray< octave_uint64 > uint64NDArray
intNDArray< octave_uint8 > uint8NDArray