GNU Octave
4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
|
#include <cstdlib>
#include <limits>
#include <iosfwd>
#include "lo-traits.h"
#include "lo-math.h"
#include "lo-mappers.h"
Go to the source code of this file.
Macros | |
#define | DEFINE_LONG_DOUBLE_CMP_OP(T) |
#define | OCTAVE_INT_BIN_OP(OP, NAME, ARGT) |
#define | OCTAVE_INT_BITCMP_OP(OP) |
#define | OCTAVE_INT_CMP_OP(OP, NAME) |
#define | OCTAVE_INT_DOUBLE_BIN_OP(OP, NAME) |
#define | OCTAVE_INT_DOUBLE_BIN_OP0(OP) |
#define | OCTAVE_INT_DOUBLE_CMP_OP(OP, NAME) |
#define | OCTAVE_INT_FLOAT_BIN_OP(OP) |
#define | OCTAVE_INT_FLOAT_CMP_OP(OP) |
#define | OCTAVE_INT_UN_OP(OPNAME, NAME) |
#define | REGISTER_INT_TYPE(TYPE) |
#define | REGISTER_OCTAVE_CMP_OP(NM, OP) |
#define | REGISTER_OCTAVE_CONST_OP(NM, value) |
Typedefs | |
typedef octave_int< int16_t > | octave_int16 |
typedef octave_int< int32_t > | octave_int32 |
typedef octave_int< int64_t > | octave_int64 |
typedef octave_int< int8_t > | octave_int8 |
typedef octave_int< uint16_t > | octave_uint16 |
typedef octave_int< uint32_t > | octave_uint32 |
typedef octave_int< uint64_t > | octave_uint64 |
typedef octave_int< uint8_t > | octave_uint8 |
Functions | |
template<class T > | |
octave_int< T > | bitshift (const octave_int< T > &a, int n, const octave_int< T > &mask=std::numeric_limits< T >::max()) |
template<class T > | |
octave_int< T > | mod (const octave_int< T > &x, const octave_int< T > &y) |
template<class T > | |
T | octave_int_abs (T x) |
template<class T1 , class T2 > | |
bool | operator!= (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<class T > | |
bool | operator!= (const octave_int< T > &x, const double &y) |
template<class T > | |
bool | operator!= (const double &x, const octave_int< T > &y) |
template<class T > | |
bool | operator!= (const octave_int< T > &x, const float &y) |
template<class T > | |
bool | operator!= (const float &x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | operator& (const octave_int< T > &x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | operator* (const octave_int< T > &x, const double &y) |
template<class T > | |
octave_int< T > | operator* (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator* (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator* (const double &, const octave_uint64 &) |
template<> | |
OCTAVE_API octave_int64 | operator* (const octave_int64 &, const double &) |
template<> | |
OCTAVE_API octave_uint64 | operator* (const octave_uint64 &, const double &) |
template<class T > | |
octave_int< T > | operator* (const octave_int< T > &x, float y) |
template<class T > | |
octave_int< T > | operator* (float x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator+ (const octave_int64 &, const double &) |
template<> | |
OCTAVE_API octave_uint64 | operator+ (const octave_uint64 &, const double &) |
template<class T > | |
octave_int< T > | operator+ (const double &x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | operator+ (const octave_int< T > &x, const double &y) |
template<> | |
OCTAVE_API octave_uint64 | operator+ (const double &, const octave_uint64 &) |
template<> | |
OCTAVE_API octave_int64 | operator+ (const double &, const octave_int64 &) |
template<class T > | |
octave_int< T > | operator+ (const octave_int< T > &x, float y) |
template<class T > | |
octave_int< T > | operator+ (float x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | operator- (const octave_int< T > &x, const double &y) |
template<class T > | |
octave_int< T > | operator- (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator- (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator- (const double &, const octave_uint64 &) |
template<> | |
OCTAVE_API octave_int64 | operator- (const octave_int64 &, const double &) |
template<> | |
OCTAVE_API octave_uint64 | operator- (const octave_uint64 &, const double &) |
template<class T > | |
octave_int< T > | operator- (const octave_int< T > &x, float y) |
template<class T > | |
octave_int< T > | operator- (float x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | operator/ (const octave_int< T > &x, const double &y) |
template<class T > | |
octave_int< T > | operator/ (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator/ (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator/ (const double &, const octave_uint64 &) |
template<> | |
OCTAVE_API octave_int64 | operator/ (const octave_int64 &, const double &) |
template<> | |
OCTAVE_API octave_uint64 | operator/ (const octave_uint64 &, const double &) |
template<class T > | |
octave_int< T > | operator/ (const octave_int< T > &x, float y) |
template<class T > | |
octave_int< T > | operator/ (float x, const octave_int< T > &y) |
template<class T1 , class T2 > | |
bool | operator< (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<class T > | |
bool | operator< (const octave_int< T > &x, const double &y) |
template<class T > | |
bool | operator< (const double &x, const octave_int< T > &y) |
template<class T > | |
bool | operator< (const octave_int< T > &x, const float &y) |
template<class T > | |
bool | operator< (const float &x, const octave_int< T > &y) |
template<class T > | |
std::ostream & | operator<< (std::ostream &os, const octave_int< T > &ival) |
template<> | |
std::ostream & | operator<< (std::ostream &os, const octave_int< int8_t > &ival) |
template<> | |
std::ostream & | operator<< (std::ostream &os, const octave_int< uint8_t > &ival) |
template<class T1 , class T2 > | |
bool | operator<= (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<class T > | |
bool | operator<= (const double &x, const octave_int< T > &y) |
template<class T > | |
bool | operator<= (const octave_int< T > &x, const double &y) |
template<class T > | |
bool | operator<= (const octave_int< T > &x, const float &y) |
template<class T > | |
bool | operator<= (const float &x, const octave_int< T > &y) |
template<class T1 , class T2 > | |
bool | operator== (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<class T > | |
bool | operator== (const octave_int< T > &x, const double &y) |
template<class T > | |
bool | operator== (const double &x, const octave_int< T > &y) |
template<class T > | |
bool | operator== (const octave_int< T > &x, const float &y) |
template<class T > | |
bool | operator== (const float &x, const octave_int< T > &y) |
template<class T1 , class T2 > | |
bool | operator> (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<class T > | |
bool | operator> (const octave_int< T > &x, const double &y) |
template<class T > | |
bool | operator> (const double &x, const octave_int< T > &y) |
template<class T > | |
bool | operator> (const float &x, const octave_int< T > &y) |
template<class T > | |
bool | operator> (const octave_int< T > &x, const float &y) |
template<class T1 , class T2 > | |
bool | operator>= (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<class T > | |
bool | operator>= (const double &x, const octave_int< T > &y) |
template<class T > | |
bool | operator>= (const octave_int< T > &x, const double &y) |
template<class T > | |
bool | operator>= (const float &x, const octave_int< T > &y) |
template<class T > | |
bool | operator>= (const octave_int< T > &x, const float &y) |
template<class T > | |
std::istream & | operator>> (std::istream &is, octave_int< T > &ival) |
template<> | |
std::istream & | operator>> (std::istream &is, octave_int< int8_t > &ival) |
template<> | |
std::istream & | operator>> (std::istream &is, octave_int< uint8_t > &ival) |
template<class T > | |
octave_int< T > | operator^ (const octave_int< T > &x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | operator| (const octave_int< T > &x, const octave_int< T > &y) |
template<class T > | |
OCTAVE_API octave_int< T > | pow (const octave_int< T > &, const octave_int< T > &) |
template<class T > | |
OCTAVE_API octave_int< T > | pow (const double &a, const octave_int< T > &b) |
template<class T > | |
OCTAVE_API octave_int< T > | pow (const octave_int< T > &a, const double &b) |
template<class T > | |
OCTAVE_API octave_int< T > | pow (const float &a, const octave_int< T > &b) |
template<class T > | |
OCTAVE_API octave_int< T > | pow (const octave_int< T > &a, const float &b) |
template<class T > | |
OCTAVE_API octave_int< T > | powf (const float &a, const octave_int< T > &b) |
template<class T > | |
OCTAVE_API octave_int< T > | powf (const octave_int< T > &a, const float &b) |
template<class T > | |
octave_int< T > | rem (const octave_int< T > &x, const octave_int< T > &y) |
template<class T > | |
bool | xisnan (const octave_int< T > &) |
template<class T > | |
octave_int< T > | xmax (const octave_int< T > &x, const octave_int< T > &y) |
template<class T > | |
octave_int< T > | xmin (const octave_int< T > &x, const octave_int< T > &y) |
#define DEFINE_LONG_DOUBLE_CMP_OP | ( | T | ) |
Definition at line 231 of file oct-inttypes.h.
#define OCTAVE_INT_BIN_OP | ( | OP, | |
NAME, | |||
ARGT | |||
) |
Definition at line 910 of file oct-inttypes.h.
#define OCTAVE_INT_BITCMP_OP | ( | OP | ) |
Definition at line 1084 of file oct-inttypes.h.
#define OCTAVE_INT_CMP_OP | ( | OP, | |
NAME | |||
) |
Definition at line 1004 of file oct-inttypes.h.
#define OCTAVE_INT_DOUBLE_BIN_OP | ( | OP, | |
NAME | |||
) |
Definition at line 1208 of file oct-inttypes.h.
#define OCTAVE_INT_DOUBLE_BIN_OP0 | ( | OP | ) |
Definition at line 1139 of file oct-inttypes.h.
#define OCTAVE_INT_DOUBLE_CMP_OP | ( | OP, | |
NAME | |||
) |
Definition at line 1235 of file oct-inttypes.h.
#define OCTAVE_INT_FLOAT_BIN_OP | ( | OP | ) |
Definition at line 1256 of file oct-inttypes.h.
#define OCTAVE_INT_FLOAT_CMP_OP | ( | OP | ) |
Definition at line 1273 of file oct-inttypes.h.
#define OCTAVE_INT_UN_OP | ( | OPNAME, | |
NAME | |||
) |
Definition at line 898 of file oct-inttypes.h.
#define REGISTER_INT_TYPE | ( | TYPE | ) |
Definition at line 58 of file oct-inttypes.h.
#define REGISTER_OCTAVE_CMP_OP | ( | NM, | |
OP | |||
) |
Definition at line 80 of file oct-inttypes.h.
#define REGISTER_OCTAVE_CONST_OP | ( | NM, | |
value | |||
) |
Definition at line 92 of file oct-inttypes.h.
typedef octave_int<int16_t> octave_int16 |
Definition at line 1111 of file oct-inttypes.h.
typedef octave_int<int32_t> octave_int32 |
Definition at line 1112 of file oct-inttypes.h.
typedef octave_int<int64_t> octave_int64 |
Definition at line 1113 of file oct-inttypes.h.
typedef octave_int<int8_t> octave_int8 |
Definition at line 1110 of file oct-inttypes.h.
typedef octave_int<uint16_t> octave_uint16 |
Definition at line 1116 of file oct-inttypes.h.
typedef octave_int<uint32_t> octave_uint32 |
Definition at line 1117 of file oct-inttypes.h.
typedef octave_int<uint64_t> octave_uint64 |
Definition at line 1118 of file oct-inttypes.h.
typedef octave_int<uint8_t> octave_uint8 |
Definition at line 1115 of file oct-inttypes.h.
octave_int<T> bitshift | ( | const octave_int< T > & | a, |
int | n, | ||
const octave_int< T > & | mask = std::numeric_limits<T>::max () |
||
) |
Definition at line 1099 of file oct-inttypes.h.
|
inline |
Definition at line 959 of file oct-inttypes.h.
References octave_int< T >::value().
Referenced by algams(), cacai(), cacon(), casyi(), cbesh(), cbesi(), cbesj(), cuni2(), cunk1(), cunk2(), dlgams(), ignuin(), install_data_fcns(), phrtsd(), zacai(), zacon(), zasyi(), zbesh(), zbesi(), zbesj(), zuni2(), zunk1(), and zunk2().
|
inline |
Definition at line 46 of file oct-inttypes.h.
References x.
Referenced by octave_int_arith_base< T, true >::div(), octave_int_arith_base< T, is_signed >::mul_internal(), and operator*().
|
inline |
Definition at line 1016 of file oct-inttypes.h.
|
inline |
Definition at line 1250 of file oct-inttypes.h.
|
inline |
Definition at line 1250 of file oct-inttypes.h.
|
inline |
Definition at line 1288 of file oct-inttypes.h.
bool operator!= | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1288 of file oct-inttypes.h.
octave_int<T> operator& | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1090 of file oct-inttypes.h.
|
inline |
Definition at line 1227 of file oct-inttypes.h.
|
inline |
Definition at line 1227 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator* | ( | const double & | , |
const octave_int64 & | |||
) |
Definition at line 614 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_uint64 operator* | ( | const double & | , |
const octave_uint64 & | |||
) |
Definition at line 578 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_int64 operator* | ( | const octave_int64 & | , |
const double & | |||
) |
Definition at line 581 of file oct-inttypes.cc.
References dbleget(), dblesplit(), octave_int< T >::max(), octave_int_abs(), umul128(), Faddeeva::w(), x, xisinf(), xisnan(), xround(), and octave_int< T >::zero.
OCTAVE_API octave_uint64 operator* | ( | const octave_uint64 & | , |
const double & | |||
) |
Definition at line 546 of file oct-inttypes.cc.
References dbleget(), dblesplit(), octave_int< T >::max(), umul128(), Faddeeva::w(), x, xisinf(), xisnan(), xround(), and octave_int< T >::zero.
|
inline |
Definition at line 1268 of file oct-inttypes.h.
|
inline |
Definition at line 1268 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator+ | ( | const octave_int64 & | , |
const double & | |||
) |
Definition at line 427 of file oct-inttypes.cc.
References octave_int< T >::max(), and x.
OCTAVE_API octave_uint64 operator+ | ( | const octave_uint64 & | , |
const double & | |||
) |
Definition at line 419 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1225 of file oct-inttypes.h.
|
inline |
Definition at line 1225 of file oct-inttypes.h.
OCTAVE_API octave_uint64 operator+ | ( | const double & | , |
const octave_uint64 & | |||
) |
Definition at line 424 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_int64 operator+ | ( | const double & | , |
const octave_int64 & | |||
) |
Definition at line 446 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1266 of file oct-inttypes.h.
|
inline |
Definition at line 1266 of file oct-inttypes.h.
|
inline |
Definition at line 1226 of file oct-inttypes.h.
|
inline |
Definition at line 1226 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator- | ( | const double & | , |
const octave_int64 & | |||
) |
OCTAVE_API octave_uint64 operator- | ( | const double & | , |
const octave_uint64 & | |||
) |
Definition at line 456 of file oct-inttypes.cc.
References octave_int< T >::max(), pow(), and x.
OCTAVE_API octave_int64 operator- | ( | const octave_int64 & | , |
const double & | |||
) |
Definition at line 476 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_uint64 operator- | ( | const octave_uint64 & | , |
const double & | |||
) |
Definition at line 451 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1267 of file oct-inttypes.h.
|
inline |
Definition at line 1267 of file oct-inttypes.h.
|
inline |
Definition at line 1228 of file oct-inttypes.h.
|
inline |
Definition at line 1228 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator/ | ( | const double & | , |
const octave_int64 & | |||
) |
Definition at line 622 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_uint64 operator/ | ( | const double & | , |
const octave_uint64 & | |||
) |
Definition at line 617 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_int64 operator/ | ( | const octave_int64 & | , |
const double & | |||
) |
Definition at line 637 of file oct-inttypes.cc.
References octave_int< T >::max(), x, and xround().
OCTAVE_API octave_uint64 operator/ | ( | const octave_uint64 & | , |
const double & | |||
) |
Definition at line 627 of file oct-inttypes.cc.
References octave_int< T >::max(), x, and xround().
|
inline |
Definition at line 1269 of file oct-inttypes.h.
|
inline |
Definition at line 1269 of file oct-inttypes.h.
|
inline |
Definition at line 1011 of file oct-inttypes.h.
|
inline |
Definition at line 1245 of file oct-inttypes.h.
|
inline |
Definition at line 1245 of file oct-inttypes.h.
|
inline |
Definition at line 1283 of file oct-inttypes.h.
bool operator< | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1283 of file oct-inttypes.h.
|
inline |
Definition at line 1022 of file oct-inttypes.h.
|
inline |
Definition at line 1046 of file oct-inttypes.h.
|
inline |
Definition at line 1054 of file oct-inttypes.h.
|
inline |
Definition at line 1012 of file oct-inttypes.h.
|
inline |
Definition at line 1246 of file oct-inttypes.h.
|
inline |
Definition at line 1246 of file oct-inttypes.h.
|
inline |
Definition at line 1284 of file oct-inttypes.h.
bool operator<= | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1284 of file oct-inttypes.h.
|
inline |
Definition at line 1015 of file oct-inttypes.h.
|
inline |
Definition at line 1249 of file oct-inttypes.h.
|
inline |
Definition at line 1249 of file oct-inttypes.h.
|
inline |
Definition at line 1287 of file oct-inttypes.h.
bool operator== | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1287 of file oct-inttypes.h.
|
inline |
Definition at line 1013 of file oct-inttypes.h.
|
inline |
Definition at line 1248 of file oct-inttypes.h.
|
inline |
Definition at line 1248 of file oct-inttypes.h.
bool operator> | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1286 of file oct-inttypes.h.
|
inline |
Definition at line 1286 of file oct-inttypes.h.
|
inline |
Definition at line 1014 of file oct-inttypes.h.
|
inline |
Definition at line 1247 of file oct-inttypes.h.
|
inline |
Definition at line 1247 of file oct-inttypes.h.
bool operator>= | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1285 of file oct-inttypes.h.
|
inline |
Definition at line 1285 of file oct-inttypes.h.
|
inline |
Definition at line 1030 of file oct-inttypes.h.
|
inline |
Definition at line 1063 of file oct-inttypes.h.
|
inline |
Definition at line 1073 of file oct-inttypes.h.
octave_int<T> operator^ | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1092 of file oct-inttypes.h.
octave_int<T> operator| | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1091 of file oct-inttypes.h.
OCTAVE_API octave_int<T> pow | ( | const octave_int< T > & | , |
const octave_int< T > & | |||
) |
Definition at line 675 of file oct-inttypes.cc.
References octave_int< T >::value().
Referenced by norm_accumulator_p< R >::accum(), norm_accumulator_mp< R >::accum(), betaincinv(), axes::properties::calc_tick_sep(), axes::properties::calc_ticklabels(), axes::properties::calc_ticks_and_lims(), cbrt(), cbrtf(), do_translate(), do_zoom(), elem_dual_p(), elem_xpow(), Feps(), Gaudiowrite(), axes::properties::get_axis_limits(), higham_subp(), DASPK_options::init(), install_cm_cm_ops(), install_cm_cs_ops(), install_cm_m_ops(), install_cm_s_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_cs_cm_ops(), install_cs_cs_ops(), install_cs_m_ops(), install_cs_s_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_fcm_fcm_ops(), install_fcm_fcs_ops(), install_fcm_fm_ops(), install_fcm_fs_ops(), install_fcs_fcm_ops(), install_fcs_fcs_ops(), install_fcs_fm_ops(), install_fcs_fs_ops(), install_fm_fcm_ops(), install_fm_fcs_ops(), install_fm_fm_ops(), install_fm_fs_ops(), install_fs_fcm_ops(), install_fs_fcs_ops(), install_fs_fm_ops(), install_fs_fs_ops(), install_m_cm_ops(), install_m_cs_ops(), install_m_m_ops(), install_m_s_ops(), install_m_scm_ops(), install_m_sm_ops(), install_pm_pm_ops(), install_s_cm_ops(), install_s_cs_ops(), install_s_m_ops(), install_s_s_ops(), install_s_scm_ops(), install_s_sm_ops(), install_scm_cm_ops(), install_scm_cs_ops(), install_scm_m_ops(), install_scm_s_ops(), install_scm_scm_ops(), install_scm_sm_ops(), install_sm_cm_ops(), install_sm_cs_ops(), install_sm_m_ops(), install_sm_s_ops(), install_sm_scm_ops(), install_sm_sm_ops(), magform(), pr_engineering_float::mantissa(), octave_jit_pow_complex_complex(), octave_jit_pow_complex_scalar(), octave_jit_pow_scalar_complex(), octave_jit_pow_scalar_scalar(), norm_accumulator_p< R >::operator R(), norm_accumulator_mp< R >::operator R(), operator-(), pow(), powf(), set_format(), log_scaler::unscale(), neg_log_scaler::unscale(), and xpow().
OCTAVE_API octave_int<T> pow | ( | const double & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 717 of file oct-inttypes.cc.
References octave_int< T >::double_value(), and pow().
OCTAVE_API octave_int<T> pow | ( | const octave_int< T > & | a, |
const double & | b | ||
) |
Definition at line 722 of file oct-inttypes.cc.
References octave_int< T >::double_value(), pow(), and xround().
OCTAVE_API octave_int<T> pow | ( | const float & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 731 of file oct-inttypes.cc.
References octave_int< T >::float_value(), and pow().
OCTAVE_API octave_int<T> pow | ( | const octave_int< T > & | a, |
const float & | b | ||
) |
Definition at line 736 of file oct-inttypes.cc.
References octave_int< T >::double_value(), pow(), and xround().
OCTAVE_API octave_int<T> powf | ( | const float & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 748 of file oct-inttypes.cc.
References octave_int< T >::float_value(), and pow().
Referenced by Feps().
OCTAVE_API octave_int<T> powf | ( | const octave_int< T > & | a, |
const float & | b | ||
) |
Definition at line 753 of file oct-inttypes.cc.
References octave_int< T >::double_value(), pow(), and xround().
|
inline |
Definition at line 954 of file oct-inttypes.h.
References octave_int< T >::value().
Referenced by install_data_fcns(), and octave_time::octave_time().
|
inline |
Definition at line 966 of file oct-inttypes.h.
Referenced by octave_int_base< T >::convert_real().
octave_int<T> xmax | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1294 of file oct-inttypes.h.
References octave_int< T >::value().
octave_int<T> xmin | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1303 of file oct-inttypes.h.
References octave_int< T >::value().