Mercurial > hg > octave-nkf
view src/ov-intx.h @ 5851:acb4a1e0b311 ss-2-9-6
[project @ 2006-06-09 16:34:42 by jwe]
author | jwe |
---|---|
date | Fri, 09 Jun 2006 16:37:20 +0000 |
parents | 93785a1b0f97 |
children | bd3041e30d97 |
line wrap: on
line source
/* Copyright (C) 2004 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include <cstdlib> #include <iostream> #include <string> #include "mx-base.h" #include "oct-alloc.h" #include "so-array.h" #include "str-vec.h" #include "error.h" #include "oct-stream.h" #include "ov-base.h" #include "ov-base-int.h" #include "ov-typeinfo.h" #include "gripes.h" class OCTAVE_VALUE_INT_MATRIX_T : public octave_base_int_matrix<OCTAVE_INT_NDARRAY_T> { public: OCTAVE_VALUE_INT_MATRIX_T (void) : octave_base_int_matrix<OCTAVE_INT_NDARRAY_T> () { } OCTAVE_VALUE_INT_MATRIX_T (const OCTAVE_INT_NDARRAY_T& nda) : octave_base_int_matrix<OCTAVE_INT_NDARRAY_T> (nda) { } ~OCTAVE_VALUE_INT_MATRIX_T (void) { } octave_base_value *clone (void) const { return new OCTAVE_VALUE_INT_MATRIX_T (*this); } octave_base_value *empty_clone (void) const { return new OCTAVE_VALUE_INT_MATRIX_T (); } int8NDArray int8_array_value (void) const { return int8NDArray (matrix); } int16NDArray int16_array_value (void) const { return int16NDArray (matrix); } int32NDArray int32_array_value (void) const { return int32NDArray (matrix); } int64NDArray int64_array_value (void) const { return int64NDArray (matrix); } uint8NDArray uint8_array_value (void) const { return uint8NDArray (matrix); } uint16NDArray uint16_array_value (void) const { return uint16NDArray (matrix); } uint32NDArray uint32_array_value (void) const { return uint32NDArray (matrix); } uint64NDArray uint64_array_value (void) const { return uint64NDArray (matrix); } double double_value (bool = false) const { double retval = lo_ieee_nan_value (); if (numel () > 0) { gripe_implicit_conversion ("Octave:array-as-scalar", type_name (), "real scalar"); retval = double (matrix(0)); } else gripe_invalid_conversion (type_name (), "real scalar"); return retval; } double scalar_value (bool = false) const { return double_value (); } NDArray array_value (bool = false) const { NDArray retval (matrix.dims ()); int nel = matrix.numel (); for (int i = 0; i < nel; i++) retval(i) = double (matrix(i)); return retval; } ComplexNDArray complex_array_value (bool = false) const { ComplexNDArray retval (matrix.dims ()); int nel = matrix.numel (); for (int i = 0; i < nel; i++) retval(i) = Complex (double (matrix(i))); return retval; } charNDArray char_array_value (bool = false) const { charNDArray retval (dims ()); octave_idx_type nel = numel (); for (octave_idx_type i = 0; i < nel; i++) retval(i) = static_cast<char>(matrix(i)); return retval; } void increment (void) { matrix += 1; } void decrement (void) { matrix -= 1; } idx_vector index_vector (void) const { return idx_vector (matrix); } int write (octave_stream& os, int block_size, oct_data_conv::data_type output_type, int skip, oct_mach_info::float_format flt_fmt) const { return os.write (matrix, block_size, output_type, skip, flt_fmt); } private: DECLARE_OCTAVE_ALLOCATOR DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA }; class OCTAVE_VALUE_INT_SCALAR_T : public octave_base_int_scalar<OCTAVE_INT_T> { public: OCTAVE_VALUE_INT_SCALAR_T (void) : octave_base_int_scalar<OCTAVE_INT_T> () { } OCTAVE_VALUE_INT_SCALAR_T (const OCTAVE_INT_T& nda) : octave_base_int_scalar<OCTAVE_INT_T> (nda) { } ~OCTAVE_VALUE_INT_SCALAR_T (void) { } octave_base_value *clone (void) const { return new OCTAVE_VALUE_INT_SCALAR_T (*this); } octave_base_value *empty_clone (void) const { return new OCTAVE_VALUE_INT_SCALAR_T (); } octave_value do_index_op (const octave_value_list& idx, int resize_ok) { octave_value retval; if (idx.valid_scalar_indices ()) retval = scalar; else { // FIXME -- this doesn't solve the problem of // // a = 1; a([1,1], [1,1], [1,1]) // // and similar constructions. Hmm... // FIXME -- using this constructor avoids narrowing the // 1x1 matrix back to a scalar value. Need a better solution // to this problem. octave_value tmp (new OCTAVE_VALUE_INT_MATRIX_T (OCTAVE_VALUE_INT_NDARRAY_EXTRACTOR_FUNCTION ())); retval = tmp.do_index_op (idx, resize_ok); } return retval; } octave_int8 int8_scalar_value (void) const { return octave_int8 (scalar); } octave_int16 int16_scalar_value (void) const { return octave_int16 (scalar); } octave_int32 int32_scalar_value (void) const { return octave_int32 (scalar); } octave_int64 int64_scalar_value (void) const { return octave_int64 (scalar); } octave_uint8 uint8_scalar_value (void) const { return octave_uint8 (scalar); } octave_uint16 uint16_scalar_value (void) const { return octave_uint16 (scalar); } octave_uint32 uint32_scalar_value (void) const { return octave_uint32 (scalar); } octave_uint64 uint64_scalar_value (void) const { return octave_uint64 (scalar); } int8NDArray int8_array_value (void) const { return int8NDArray (dim_vector (1, 1), scalar); } int16NDArray int16_array_value (void) const { return int16NDArray (dim_vector (1, 1), scalar); } int32NDArray int32_array_value (void) const { return int32NDArray (dim_vector (1, 1), scalar); } int64NDArray int64_array_value (void) const { return int64NDArray (dim_vector (1, 1), scalar); } uint8NDArray uint8_array_value (void) const { return uint8NDArray (dim_vector (1, 1), scalar); } uint16NDArray uint16_array_value (void) const { return uint16NDArray (dim_vector (1, 1), scalar); } uint32NDArray uint32_array_value (void) const { return uint32NDArray (dim_vector (1, 1), scalar); } uint64NDArray uint64_array_value (void) const { return uint64NDArray (dim_vector (1, 1), scalar); } octave_value resize (const dim_vector& dv, bool fill = false) const { if (fill) { OCTAVE_INT_NDARRAY_T retval (dv, 0); if (dv.numel()) retval(0) = scalar; return retval; } else { OCTAVE_INT_NDARRAY_T retval (dv); if (dv.numel()) retval(0) = scalar; return retval; } } double double_value (bool = false) const { return double (scalar); } double scalar_value (bool = false) const { return double (scalar); } NDArray array_value (bool = false) const { NDArray retval (dim_vector (1, 1)); retval(0) = double (scalar); return retval; } ComplexNDArray complex_array_value (bool = false) const { ComplexNDArray retval (dim_vector (1, 1)); retval(0) = Complex (double (scalar)); return retval; } charNDArray char_array_value (bool = false) const { charNDArray retval (dim_vector (1, 1)); retval(0) = static_cast<char>(scalar); return retval; } void increment (void) { scalar += 1; } void decrement (void) { scalar -= 1; } idx_vector index_vector (void) const { return idx_vector (scalar); } int write (octave_stream& os, int block_size, oct_data_conv::data_type output_type, octave_idx_type skip, oct_mach_info::float_format flt_fmt) const { return os.write (OCTAVE_VALUE_INT_NDARRAY_EXTRACTOR_FUNCTION (), block_size, output_type, skip, flt_fmt); } private: DECLARE_OCTAVE_ALLOCATOR DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA }; /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */