26#if defined (HAVE_CONFIG_H)
100 (default_numeric_demotion_function,
122 "real matrix",
"real scalar");
134 "real matrix",
"real scalar");
160 "real matrix",
"complex scalar");
176 "real matrix",
"complex scalar");
213 octave::err_nan_to_logical_conversion ();
329 error (
"diag: expecting vector argument");
333 return mat.
diag (m, n);
344 octave::idx_vector (
m_idx_cache->as_array ().reshape (new_dims),
357 octave::idx_vector (
m_idx_cache->as_array ().squeeze (),
423 return m_idx_cache->as_array ().is_sorted_rows (mode);
446 if (octave::math::isnan (
d))
447 octave::err_nan_to_character_conversion ();
449 int ival = octave::math::nint (
d);
451 if (ival < 0 || ival > std::numeric_limits<unsigned char>::max ())
459 ::warning (
"range error for conversion to character value");
464 chm(i) =
static_cast<char> (ival);
481 os <<
"# ndims: " << dv.
ndims () <<
"\n";
483 for (
int i=0; i < dv.
ndims (); i++)
492 os <<
"# rows: " <<
rows () <<
"\n"
493 <<
"# columns: " <<
columns () <<
"\n";
506 keywords[0] =
"ndims";
507 keywords[1] =
"rows";
513 error (
"load: failed to extract number of rows and columns");
518 char *prev_locale = std::setlocale (LC_ALL,
nullptr);
519 std::string old_locale (prev_locale ? prev_locale :
"");
520 std::setlocale (LC_ALL,
"C");
521 octave::unwind_action act
522 ([&old_locale] () { std::setlocale (LC_ALL, old_locale.c_str ()); });
526 int mdims =
static_cast<int> (val);
529 error (
"load: failed to extract number of dimensions");
534 for (
int i = 0; i < mdims; i++)
538 error (
"load: failed to read dimensions");
545 error (
"load: failed to load matrix constant");
549 else if (kw ==
"rows")
555 error (
"load: failed to extract number of rows and columns");
557 if (nr > 0 && nc > 0)
562 error (
"load: failed to load matrix constant");
566 else if (nr == 0 || nc == 0)
569 error (
"unexpected dimensions in octave_matrix::load_ascii - please report this bug");
572 error (
"unexpected dimensions keyword (= '%s') octave_matrix::load_ascii - please report this bug", kw.c_str ());
586 int32_t tmp = - dv.
ndims ();
587 os.write (
reinterpret_cast<char *
> (&tmp), 4);
588 for (
int i = 0; i < dv.
ndims (); i++)
591 os.write (
reinterpret_cast<char *
> (&tmp), 4);
600 warning (
"save: some values too large to save as floats --");
601 warning (
"save: saving as doubles instead");
606 else if (dv.
numel () > 8192)
608 double max_val, min_val;
610 st = octave::get_save_type (max_val, min_val);
613 const double *mtmp = m.
data ();
621 octave::mach_info::float_format fmt)
625 if (! is.read (
reinterpret_cast<char *
> (&mdims), 4))
636 for (
int i = 0; i < mdims; i++)
638 if (! is.read (
reinterpret_cast<char *
> (&di), 4))
657 if (! is.read (
reinterpret_cast<char *
> (&tmp), 1))
674 if (! is.read (
reinterpret_cast<char *
> (&nc), 4))
678 if (! is.read (
reinterpret_cast<char *
> (&tmp), 1))
699#if defined (HAVE_HDF5)
706 int rank = dv.
ndims ();
707 hid_t space_hid, data_hid;
708 space_hid = data_hid = -1;
714 for (
int i = 0; i < rank; i++)
715 hdims[i] = dv(rank-i-1);
717 space_hid = H5Screate_simple (rank, hdims,
nullptr);
719 if (space_hid < 0)
return false;
721 hid_t save_type_hid = H5T_NATIVE_DOUBLE;
727 warning (
"save: some values too large to save as floats --");
728 warning (
"save: saving as doubles instead");
731 save_type_hid = H5T_NATIVE_FLOAT;
733#if defined (HAVE_HDF5_INT2FLOAT_CONVERSIONS)
737 double max_val, min_val;
745#if defined (HAVE_HDF5_18)
746 data_hid = H5Dcreate (loc_id, name, save_type_hid, space_hid,
750 data_hid = H5Dcreate (loc_id, name, save_type_hid, space_hid,
755 H5Sclose (space_hid);
759 const double *mtmp = m.
data ();
764 H5Sclose (space_hid);
767 octave_unused_parameter (loc_id);
768 octave_unused_parameter (name);
769 octave_unused_parameter (save_as_floats);
782#if defined (HAVE_HDF5)
791#if defined (HAVE_HDF5_18)
794 hid_t data_hid = H5Dopen (loc_id, name);
796 hid_t space_id = H5Dget_space (data_hid);
798 hsize_t rank = H5Sget_simple_extent_ndims (space_id);
810 H5Sget_simple_extent_dims (space_id, hdims, maxdims);
822 for (hsize_t i = 0, j = rank - 1; i < rank; i++, j--)
839 octave_unused_parameter (loc_id);
840 octave_unused_parameter (name);
850 bool pr_as_read_syntax)
const
861 mxDouble *pd =
static_cast<mxDouble *
> (retval->
get_data ());
863 mwSize nel =
numel ();
867 for (mwIndex i = 0; i < nel; i++)
887 if (tmp.imag () == 0.0)
888 rr.xelem (i) = tmp.real ();
894 rc.xelem (j) = rr.xelem (j);
902 rc.xelem (j) = fcn (a(j));
925#define ARRAY_METHOD_MAPPER(UMAP, FCN) \
926 case umap_ ## UMAP: \
927 return octave_value (m_matrix.FCN ())
934#define ARRAY_MAPPER(UMAP, TYPE, FCN) \
935 case umap_ ## UMAP: \
936 return octave_value (m_matrix.map<TYPE> (FCN))
938#define RC_ARRAY_MAPPER(UMAP, TYPE, FCN) \
939 case umap_ ## UMAP: \
940 return do_rc_map (m_matrix, FCN)
1001 return str_conv.
map (umap);
void swap_bytes< 4 >(void *ptr)
N Dimensional Array with copy-on-write semantics.
const dim_vector & dims() const
Return a const-reference so that dims ()(i) works efficiently.
T & elem(octave_idx_type n)
Size of the specified dimension.
int ndims() const
Size of the specified dimension.
octave_idx_type rows() const
void resize(const dim_vector &dv, const T &rfv)
Size of the specified dimension.
octave_idx_type columns() const
const T * data() const
Size of the specified dimension.
T * rwdata()
Size of the specified dimension.
octave_idx_type numel() const
Number of elements in the array.
MArray< T > reshape(const dim_vector &new_dims) const
Matrix diag(octave_idx_type k=0) const
bool any_element_not_one_or_zero() const
bool any_element_is_nan() const
bool all_integers(double &max_val, double &min_val) const
bool too_large_for_float() 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() const
Number of dimensions.
octave::idx_vector * m_idx_cache
octave_value diag(octave_idx_type k=0) const
octave_idx_type numel() const
sortmode issorted(sortmode mode=UNSORTED) const
sortmode is_sorted_rows(sortmode mode=UNSORTED) const
octave_value sort(octave_idx_type dim=0, sortmode mode=ASCENDING) const
octave_value squeeze() const
Array< octave_idx_type > sort_rows_idx(sortmode mode=ASCENDING) const
octave_value reshape(const dim_vector &new_dims) const
octave_idx_type rows() const
octave_idx_type columns() const
int current_print_indent_level() 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
friend class octave_value
void warn_save(const char *type) const
static int static_type_id()
octave_value sort(octave_idx_type dim=0, sortmode mode=ASCENDING) const
Array< octave_idx_type > sort_rows_idx(sortmode mode=ASCENDING) const
FloatComplexMatrix float_complex_matrix_value(bool=false) const
boolNDArray bool_array_value(bool warn=false) const
Array< octave_idx_type > sort_rows_idx(sortmode mode=ASCENDING) const
type_conv_info numeric_demotion_function() const
SparseMatrix sparse_matrix_value(bool=false) const
octave_value as_uint32() const
bool load_ascii(std::istream &is)
octave_value as_int64() const
FloatComplex float_complex_value(bool=false) const
float float_value(bool=false) const
octave_base_value * try_narrowing_conversion()
octave_value as_int8() const
charNDArray char_array_value(bool=false) const
FloatMatrix float_matrix_value(bool=false) const
bool save_binary(std::ostream &os, bool save_as_floats)
octave_value squeeze() const
bool save_ascii(std::ostream &os)
SparseComplexMatrix sparse_complex_matrix_value(bool=false) const
octave_value as_uint64() const
FloatComplexNDArray float_complex_array_value(bool=false) const
bool load_binary(std::istream &is, bool swap, octave::mach_info::float_format fmt)
void print_raw(std::ostream &os, bool pr_as_read_syntax=false) const
octave_value sort(octave_idx_type dim=0, sortmode mode=ASCENDING) const
bool save_hdf5(octave_hdf5_id loc_id, const char *name, bool save_as_floats)
octave_value as_single() const
octave_value as_int16() const
Complex complex_value(bool=false) const
ComplexNDArray complex_array_value(bool=false) const
octave_value reshape(const dim_vector &new_dims) const
Matrix matrix_value(bool=false) const
octave_value diag(octave_idx_type k=0) const
octave_value map(unary_mapper_t umap) const
mxArray * as_mxArray(bool interleaved) const
bool load_hdf5(octave_hdf5_id loc_id, const char *name)
sortmode issorted(sortmode mode=UNSORTED) const
ComplexMatrix complex_matrix_value(bool=false) const
octave_value as_int32() const
FloatNDArray float_array_value(bool=false) const
octave_value as_uint8() const
octave_value as_double() const
octave_value convert_to_str_internal(bool pad, bool force, char type) const
sortmode is_sorted_rows(sortmode mode=UNSORTED) const
octave_value as_uint16() const
NDArray array_value(bool=false) const
double double_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 read_doubles(std::istream &is, double *data, save_type type, octave_idx_type len, bool swap, octave::mach_info::float_format fmt)
void write_doubles(std::ostream &os, const double *data, save_type type, octave_idx_type len)
void warning(const char *fmt,...)
void error(const char *fmt,...)
void err_invalid_conversion(const std::string &from, const std::string &to)
void warn_logical_conversion()
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
Complex log2(const Complex &x)
Complex asin(const Complex &x)
Complex acos(const Complex &x)
float lo_ieee_float_nan_value()
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)
std::complex< T > ceil(const std::complex< T > &x)
Complex atan(const Complex &x)
std::complex< T > floor(const std::complex< T > &x)
std::complex< double > Complex
std::complex< float > FloatComplex
#define OCTAVE_LOCAL_BUFFER(T, buf, size)
Complex erf(const Complex &x)
Complex expm1(const Complex &x)
Complex log1p(const Complex &x)
Complex erfc(const Complex &x)
#define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n, c)
#define ARRAY_MAPPER(UMAP, TYPE, FCN)
#define ARRAY_METHOD_MAPPER(UMAP, FCN)
#define RC_ARRAY_MAPPER(UMAP, TYPE, FCN)
void octave_print_internal(std::ostream &os, const float_display_format &fmt, bool d, bool pr_as_read_syntax)
template int8_t abs(int8_t)
F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d
intNDArray< octave_uint16 > uint16NDArray
intNDArray< octave_uint32 > uint32NDArray
intNDArray< octave_uint64 > uint64NDArray
intNDArray< octave_uint8 > uint8NDArray