GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov.cc File Reference
#include "data-conv.h"
#include "quit.h"
#include "str-vec.h"
#include "ovl.h"
#include "oct-stream.h"
#include "ov.h"
#include "ov-base.h"
#include "ov-bool.h"
#include "ov-bool-mat.h"
#include "ov-cell.h"
#include "ov-scalar.h"
#include "ov-float.h"
#include "ov-re-mat.h"
#include "ov-flt-re-mat.h"
#include "ov-re-diag.h"
#include "ov-flt-re-diag.h"
#include "ov-perm.h"
#include "ov-bool-sparse.h"
#include "ov-cx-sparse.h"
#include "ov-re-sparse.h"
#include "ov-int8.h"
#include "ov-int16.h"
#include "ov-int32.h"
#include "ov-int64.h"
#include "ov-uint8.h"
#include "ov-uint16.h"
#include "ov-uint32.h"
#include "ov-uint64.h"
#include "ov-complex.h"
#include "ov-flt-complex.h"
#include "ov-cx-mat.h"
#include "ov-flt-cx-mat.h"
#include "ov-cx-diag.h"
#include "ov-flt-cx-diag.h"
#include "ov-ch-mat.h"
#include "ov-str-mat.h"
#include "ov-range.h"
#include "ov-struct.h"
#include "ov-class.h"
#include "ov-classdef.h"
#include "ov-oncleanup.h"
#include "ov-cs-list.h"
#include "ov-colon.h"
#include "ov-builtin.h"
#include "ov-dld-fcn.h"
#include "ov-usr-fcn.h"
#include "ov-fcn-handle.h"
#include "ov-typeinfo.h"
#include "ov-null-mat.h"
#include "ov-lazy-idx.h"
#include "ov-java.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "interpreter-private.h"
#include "pager.h"
#include "parse.h"
#include "pr-flt-fmt.h"
#include "pr-output.h"
#include "symtab.h"
#include "utils.h"
#include "variables.h"
Include dependency graph for ov.cc:

Go to the source code of this file.

Macros

#define XVALUE_EXTRACTOR(TYPE, NAME, FCN)
 

Functions

static void decode_subscripts (const char *name, const octave_value &arg, std::string &type_string, std::list< octave_value_list > &idx)
 
octave_value do_unary_op (octave::type_info &ti, octave_value::unary_op op, const octave_value &v)
 
octave_value do_unary_op (octave_value::unary_op op, const octave_value &v)
 
static OCTAVE_NORETURN void err_unary_op (const std::string &on, const std::string &tn)
 
static OCTAVE_NORETURN void err_unary_op_conv (const std::string &on)
 
static OCTAVE_NORETURN void err_unary_op_conversion_failed (const std::string &op, const std::string &tn)
 
OCTAVE_EXPORT octave_value_list Fdisable_diagonal_matrix (const octave_value_list &args, int nargout)
 
OCTAVE_EXPORT octave_value_list Fdisable_permutation_matrix (const octave_value_list &args, int nargout)
 
OCTAVE_EXPORT octave_value_list Fdisable_range (const octave_value_list &args, int nargout)
 
OCTAVE_EXPORT octave_value_list Fis_dq_string (const octave_value_list &args, int)
 
OCTAVE_EXPORT octave_value_list Fis_sq_string (const octave_value_list &args, int)
 
OCTAVE_EXPORT octave_value_list Fsizeof (const octave_value_list &args, int)
 
OCTAVE_EXPORT octave_value_list Fsubsasgn (const octave_value_list &args, int)
 
OCTAVE_EXPORT octave_value_list Fsubsref (const octave_value_list &args, int nargout)
 
void install_types (octave::type_info &ti)
 

Variables

octave_value::octave_value(const Array< char > &chm, char type) return retval
 
static bool Vdisable_diagonal_matrix = false
 
static bool Vdisable_permutation_matrix = false
 
static bool Vdisable_range = false
 

Macro Definition Documentation

◆ XVALUE_EXTRACTOR

#define XVALUE_EXTRACTOR (   TYPE,
  NAME,
  FCN 
)
Value:
octave_value::NAME (const char *fmt, ...) const \
{ \
TYPE retval; \
\
try \
{ \
retval = FCN (); \
} \
catch (octave::execution_exception& e) \
{ \
if (fmt) \
{ \
va_list args; \
va_start (args, fmt); \
verror (e, fmt, args); \
va_end (args); \
} \
\
throw e; \
} \
\
return retval; \
}
@ NAME
Definition: oct-parse.h:103
@ FCN
Definition: oct-parse.h:138
octave_value::octave_value(const Array< char > &chm, char type) return retval
Definition: ov.cc:811

Function Documentation

◆ decode_subscripts()

static void decode_subscripts ( const char *  name,
const octave_value arg,
std::string &  type_string,
std::list< octave_value_list > &  idx 
)
static

◆ do_unary_op() [1/2]

◆ do_unary_op() [2/2]

octave_value do_unary_op ( octave_value::unary_op  op,
const octave_value v 
)

Definition at line 2685 of file ov.cc.

References octave::__get_type_info__(), and do_unary_op().

◆ err_unary_op()

static OCTAVE_NORETURN void err_unary_op ( const std::string &  on,
const std::string &  tn 
)
static

Definition at line 2622 of file ov.cc.

References error().

Referenced by octave_value::do_non_const_unary_op().

◆ err_unary_op_conv()

static OCTAVE_NORETURN void err_unary_op_conv ( const std::string &  on)
static

Definition at line 2629 of file ov.cc.

References error().

◆ err_unary_op_conversion_failed()

static OCTAVE_NORETURN void err_unary_op_conversion_failed ( const std::string &  op,
const std::string &  tn 
)
static

Definition at line 2693 of file ov.cc.

References error().

Referenced by octave_value::do_non_const_unary_op().

◆ Fdisable_diagonal_matrix()

OCTAVE_EXPORT octave_value_list Fdisable_diagonal_matrix ( const octave_value_list args,
int  nargout 
)

Definition at line 3325 of file ov.cc.

References SET_INTERNAL_VARIABLE.

Referenced by octave::interpreter::maximum_braindamage().

◆ Fdisable_permutation_matrix()

OCTAVE_EXPORT octave_value_list Fdisable_permutation_matrix ( const octave_value_list args,
int  nargout 
)

Definition at line 3295 of file ov.cc.

References SET_INTERNAL_VARIABLE.

Referenced by octave::interpreter::maximum_braindamage().

◆ Fdisable_range()

OCTAVE_EXPORT octave_value_list Fdisable_range ( const octave_value_list args,
int  nargout 
)

Definition at line 3369 of file ov.cc.

References SET_INTERNAL_VARIABLE.

Referenced by octave::interpreter::maximum_braindamage().

◆ Fis_dq_string()

OCTAVE_EXPORT octave_value_list Fis_dq_string ( const octave_value_list args,
int   
)

Definition at line 3262 of file ov.cc.

References octave_value_list::length(), ovl(), and print_usage().

◆ Fis_sq_string()

OCTAVE_EXPORT octave_value_list Fis_sq_string ( const octave_value_list args,
int   
)

Definition at line 3239 of file ov.cc.

References octave_value_list::length(), ovl(), and print_usage().

◆ Fsizeof()

OCTAVE_EXPORT octave_value_list Fsizeof ( const octave_value_list args,
int   
)

Definition at line 2977 of file ov.cc.

References octave_value_list::length(), ovl(), and print_usage().

◆ Fsubsasgn()

◆ Fsubsref()

OCTAVE_EXPORT octave_value_list Fsubsref ( const octave_value_list args,
int  nargout 
)

◆ install_types()

void install_types ( octave::type_info ti)

Definition at line 2914 of file ov.cc.

References octave_value_typeinfo::register_type(), octave_base_value::register_type(), octave_bool_matrix::register_type(), octave_sparse_bool_matrix::register_type(), octave_bool::register_type(), octave_builtin::register_type(), octave_cell::register_type(), octave_magic_colon::register_type(), octave_complex::register_type(), octave_cs_list::register_type(), octave_complex_diag_matrix::register_type(), octave_complex_matrix::register_type(), octave_sparse_complex_matrix::register_type(), octave_dld_function::register_type(), octave_fcn_handle::register_type(), octave_float_scalar::register_type(), octave_float_complex::register_type(), octave_float_complex_diag_matrix::register_type(), octave_float_complex_matrix::register_type(), octave_float_diag_matrix::register_type(), octave_float_matrix::register_type(), octave_uint64_matrix::register_type(), octave_uint64_scalar::register_type(), octave_lazy_index::register_type(), octave_null_matrix::register_type(), octave_null_str::register_type(), octave_null_sq_str::register_type(), octave_oncleanup::register_type(), octave_perm_matrix::register_type(), octave_range::register_type(), octave_diag_matrix::register_type(), octave_matrix::register_type(), octave_sparse_matrix::register_type(), octave_scalar::register_type(), octave_char_matrix_str::register_type(), octave_char_matrix_sq_str::register_type(), octave_struct::register_type(), octave_scalar_struct::register_type(), and octave_user_function::register_type().

Referenced by octave::type_info::type_info().

Variable Documentation

◆ retval

octave_value::octave_value (const Array<char>& chm, char type) return retval

Definition at line 2608 of file ov.cc.

Referenced by octave::jit_convert::jit_convert(), SparseComplexMatrix::abs(), SparseMatrix::abs(), octave::bp_table::add_breakpoint(), octave::tree_statement_list::add_breakpoint(), octave::bp_table::add_breakpoint_1(), mxArray_struct::add_field(), add_hdf5_data(), octave::math::airy(), all_colon_equiv(), octave::directory_path::all_directories(), all_ok(), all_ones(), octave::call_stack::all_scripts(), octave_user_function::all_va_args(), SparseBoolMatrix::any(), any_ones(), any_orig_empty(), FloatComplexMatrix::append(), FloatMatrix::append(), FloatComplexRowVector::append(), FloatRowVector::append(), ComplexMatrix::append(), Matrix::append(), ComplexRowVector::append(), RowVector::append(), octave_complex::array_value(), octave_complex_matrix::array_value(), octave_float_complex::array_value(), octave_uint64_matrix::array_value(), octave_uint64_scalar::array_value(), octave_value_list::array_value(), Sparse< T >::array_value(), idx_vector::idx_range_rep::as_array(), idx_vector::idx_vector_rep::as_array(), idx_vector::idx_mask_rep::as_array(), dim_vector::as_array(), octave::as_bool_nd_array(), Array< T >::as_column(), Array< T >::as_matrix(), mxArray_octave_value::as_mxArray(), octave_bool_matrix::as_mxArray(), octave_sparse_bool_matrix::as_mxArray(), octave_bool::as_mxArray(), octave_cell::as_mxArray(), octave_char_matrix::as_mxArray(), octave_complex::as_mxArray(), octave_complex_matrix::as_mxArray(), octave_sparse_complex_matrix::as_mxArray(), octave_float_scalar::as_mxArray(), octave_float_complex::as_mxArray(), octave_float_complex_matrix::as_mxArray(), octave_float_matrix::as_mxArray(), octave_uint64_matrix::as_mxArray(), octave_uint64_scalar::as_mxArray(), octave_range::as_mxArray(), octave_matrix::as_mxArray(), octave_sparse_matrix::as_mxArray(), octave_scalar::as_mxArray(), octave_struct::as_mxArray(), octave_scalar_struct::as_mxArray(), octave::as_nd_array(), mxArray_number::as_octave_value(), mxArray_sparse::as_octave_value(), Array< T >::as_row(), octave::asprintf(), Sparse< T >::assign(), octave::type_info::assign_ops_map(), octave::type_info::assignany_ops_map(), QtHandles::attempt_type_conversion(), attempt_type_conversion(), octave::call_stack::backtrace(), octave::call_stack::backtrace_info(), octave::base64_decode(), basename(), QtHandles::GLCanvas::begin_rendering(), octave::math::bessel_return_value(), binary_assoc_op_defun_body(), octave::type_info::binary_ops_map(), binmap(), octave::math::biry(), bitop(), octave::sys::blas_version(), octave_uint64_matrix::bool_array_value(), octave_uint64_scalar::bool_array_value(), octave::tree_statement_list::breakpoints_and_conds(), SparseComplexMatrix::bsolve(), SparseMatrix::bsolve(), btyp_mixed_numeric(), c_file_ptr_buf::buf_close(), c_zfile_ptr_buf::buf_close(), octave::symbol_table::built_in_function_names(), octave::fcn_info::fcn_info_rep::builtin_find(), QtHandles::button_number(), octave_cell::byte_size(), octave_class::byte_size(), octave_struct::byte_size(), octave_scalar_struct::byte_size(), string_vector::c_str_vec(), calc_single_subscript_internal(), call_mex(), cam2xform(), octave::sys::canonicalize_file_name(), Array< T >::cat(), octave_map::cat(), Sparse< T >::cat(), octave::catch_interrupts(), octave::math::cbesh1(), octave::math::cbesh2(), octave::math::cbesi(), octave::math::cbesj(), octave::math::cbesk(), octave::math::cbesy(), Cell::cellstr_value(), octave_char_matrix_str::cellstr_value(), octave_complex_matrix::char_array_value(), octave_sparse_complex_matrix::char_array_value(), octave_float_complex_matrix::char_array_value(), octave_bool_matrix::char_array_value(), octave_sparse_bool_matrix::char_array_value(), octave_bool::char_array_value(), octave_float_scalar::char_array_value(), octave_float_matrix::char_array_value(), octave_uint64_matrix::char_array_value(), octave_uint64_scalar::char_array_value(), octave_range::char_array_value(), octave_matrix::char_array_value(), octave_sparse_matrix::char_array_value(), octave_scalar::char_array_value(), check_exception(), octave::load_path::package_info::check_file_type(), octave::check_gzip_magic(), QtHandles::Table::checkBoxForLogical(), octave_complex_diag_matrix::chk_valid_scalar(), octave_diag_matrix::chk_valid_scalar(), octave_float_diag_matrix::chk_valid_scalar(), octave_float_complex_diag_matrix::chk_valid_scalar(), octave::math::chol2inv(), octave::chol2inv_internal(), octave::tm_const::class_concat(), octave::class_fromName(), octave::class_get_inferiorclasses(), octave::class_get_methods(), octave::class_get_properties(), octave::class_get_superclasses(), octave::class_getConstant(), gzfilebuf::close(), octave::sys::dir_entry::close(), octave::symbol_table::cmdline_function_names(), Cell::column(), ComplexDiagMatrix::column(), SparseComplexMatrix::column(), DiagMatrix::column(), SparseMatrix::column(), FloatComplexDiagMatrix::column(), FloatDiagMatrix::column(), ComplexMatrix::column_is_real_only(), FloatComplexMatrix::column_is_real_only(), idx_vector::complement(), octave_uint64_matrix::complex_array_value(), octave_uint64_scalar::complex_array_value(), octave_uint64_matrix::complex_matrix_value(), octave_uint64_scalar::complex_matrix_value(), octave::type_info::compound_binary_ops_map(), Sparse< T >::compute_index(), NDArray::concat(), FloatNDArray::concat(), SparseMatrix::concat(), concat(), octave::event_manager::confirm_shutdown(), octave::load_path::contains_canonical(), octave::contents_file_in_path(), conv_to_array(), conv_to_int_array(), convert(), octave::convert_data(), convert_label_position(), convert_linestyleorder_string(), convert_position(), octave::tree_evaluator::convert_return_list_to_const_vector(), convert_text_position(), convert_ticklabel_string(), octave_base_value::convert_to_str(), octave_float_scalar::convert_to_str_internal(), octave_float_matrix::convert_to_str_internal(), octave_matrix::convert_to_str_internal(), octave_sparse_matrix::convert_to_str_internal(), octave_scalar::convert_to_str_internal(), octave_base_int_scalar< T >::convert_to_str_internal(), octave::convert_to_valid_int(), property::create(), octave::opengl_texture::create(), octave::jit_typeinfo::create_external(), octave_user_function::ctor_type_str(), dim_vector::cumulative(), octave::call_stack::current_column(), octave::call_stack::current_line(), daspk_user_function(), daspk_user_jacobian(), dasrt_user_cf(), dasrt_user_f(), dasrt_user_j(), dassl_user_function(), dassl_user_jacobian(), octave::find_files_model::data(), octave::set_path_model::data(), octave::workspace_model::data(), oct_data_conv::data_type_as_string(), oct_data_conv::data_type_size(), octave::call_stack::debug_user_code(), octave::call_stack::debug_user_code_column(), octave::call_stack::debug_user_code_line(), default_colororder(), default_control_position(), default_control_sliderstep(), default_data(), default_data_lim(), default_numeric_conversion_function(), default_panel_position(), default_screensize(), default_table_backgroundcolor(), default_table_position(), octave::error_system::default_warning_state(), DEFMETHOD(), DEFMETHODX(), Sparse< T >::delete_elements(), octave_base_matrix< Cell >::delete_elements(), ComplexMatrix::determinant(), Matrix::determinant(), FloatComplexMatrix::determinant(), FloatMatrix::determinant(), SparseComplexMatrix::determinant(), SparseMatrix::determinant(), device_pixel_ratio(), octave_base_diag< DMT, MT >::diag(), octave_complex_matrix::diag(), octave_float_complex_matrix::diag(), octave_float_matrix::diag(), octave_matrix::diag(), Array< T >::diag(), Matrix::diag(), FloatComplexMatrix::diag(), FloatMatrix::diag(), octave_complex_diag_matrix::diag_matrix_value(), octave_float_complex_diag_matrix::diag_matrix_value(), octave::dims_to_numel(), SparseComplexMatrix::dinverse(), SparseMatrix::dinverse(), octave::load_path::dir_list(), octave::load_path::dirs(), octave::event_manager::disable(), dispatch_kron(), dmperm_internal(), dmsolve(), do_accumarray_minmax(), do_accumarray_minmax_fun(), do_accumarray_sum(), do_accumdim_sum(), octave::math::do_bessel(), do_bessel(), do_bitpack(), do_bitunpack(), do_bsxfun_op(), do_cat(), octave_map::do_cat(), do_cellslices_nda(), octave::sys::env::do_chdir(), do_class_concat(), do_cumminmax_body(), do_cumminmax_red_op(), do_dbstack(), octave::command_editor::do_decode_prompt_string(), do_diff(), octave::rand::do_distribution(), octave::tree_jit::do_execute(), do_extended_gcd(), do_fft(), do_fft2(), do_fftn(), octave::rand::do_float_nd_array(), children_property::do_get_all_children(), children_property::do_get_children(), octave::ft_manager::do_get_font(), QtHandles::GLCanvas::do_getPixels(), octave::base_stream::do_gets(), do_gsvd(), do_hypot(), octave_base_matrix< MT >::do_index_op(), octave_base_sparse< T >::do_index_op(), octave_perm_matrix::do_index_op(), octave_range::do_index_op(), octave_diag_matrix::do_index_op(), octave_char_matrix_str::do_index_op_internal(), DASPK::do_integrate(), DASSL::do_integrate(), LSODE::do_integrate(), do_linspace(), octave_errno::do_list(), do_mat2cell(), do_mat2cell_2d(), do_mat2cell_nd(), do_merge(), do_minmax_bin_op(), do_minmax_bin_op< charNDArray >(), do_minmax_body(), do_minmax_red_op(), do_minmax_red_op< boolNDArray >(), do_minmax_red_op< charNDArray >(), octave::rand::do_nd_array(), do_num2cell(), do_numeric_lookup(), octave::base_stream::do_numeric_printf_conv(), do_object2cell(), octave::base_stream::do_oscanf(), octave::sys::env::do_polite_directory_format(), octave::base_stream::do_printf(), octave::do_printf_conv(), do_rand(), do_regexp_ptn_string_escapes(), do_regexp_rep_string_escapes(), do_repelems(), octave::rand::do_scalar(), octave::textscan::do_scan(), octave::base_stream::do_scanf(), row_vector_property::do_set(), octave::do_simple_cellfun(), do_simple_gcd(), do_sparse_diff(), do_sqrtm(), do_strcmp_fun(), do_stream_open(), octave::do_string_escapes(), octave::base_stream::do_textscan(), do_trilu(), octave::rand::do_vector(), octave::call_stack::do_who(), octave_struct::dotref(), octave_scalar_struct::dotref(), octave_uint64_matrix::double_value(), SparseComplexMatrix::dsolve(), SparseMatrix::dsolve(), mxArray::dup(), octave_char_matrix_str::edit_display(), eigs_complex_func(), eigs_func(), octave_map::elem(), elem_xpow(), octave::call_stack::element(), octave::event_manager::enable(), octave::end_token_as_string(), octave::profiler::tree_node::enter(), octave::stream::eof(), octave_fields::equal_up_to_order(), octave::stream::error(), DASPK::error_message(), DASRT::error_message(), DASSL::error_message(), LSODE::error_message(), octave::tree_evaluator::eval(), octave::tree_evaluator::eval_decl_elt(), octave::octave_lvalue::eval_for_numel(), octave::tree_evaluator::eval_string(), octave::tree_evaluator::evalin(), octave::tree_multi_assignment::evaluate(), octave::tree_superclass_ref::evaluate(), octave::tree_identifier::evaluate(), octave::tree_index_expression::evaluate(), octave::tree_identifier::evaluate_n(), octave::tree_index_expression::evaluate_n(), octave::octave_dock_widget::event(), octave::environment::exec_path(), octave::cdef_method::cdef_method_rep::execute(), octave::jit_function_info::execute(), octave_classdef_superclass_ref::execute(), octave_builtin::execute(), octave_mex_function::execute(), octave::tree_jit::execute(), octave::tree_evaluator::execute_user_function(), octave::tree_evaluator::execute_user_script(), octave::expand_char_class(), octave::math::expm1(), octave::rand::exponential(), extract_function(), extract_keyword(), F__accumarray_sum__(), F__accumdim_sum__(), F__betainc__(), F__delaunayn__(), F__eigs__(), F__event_manager_edit_file__(), F__event_manager_file_dialog__(), F__event_manager_named_icon__(), F__event_manager_question_dialog__(), F__expint__(), F__fieldnames__(), F__fltk_uigetfile__(), F__ftp_dir__(), F__gammainc__(), F__get_cmdline_fcn_txt__(), F__go_figure__(), F__ilu0__(), F__ilutp__(), F__is_elevated_process__(), F__lin_interpn__(), F__native2unicode__(), F__octave_config_info__(), F__parse_file__(), F__parser_debug_flag__(), F__pchip_deriv__(), F__player_audioplayer__(), F__player_get_channels__(), F__player_get_fs__(), F__player_get_id__(), F__player_get_nbits__(), F__player_get_sample_number__(), F__player_get_tag__(), F__player_get_total_samples__(), F__player_get_userdata__(), F__player_isplaying__(), F__recorder_audiorecorder__(), F__recorder_get_channels__(), F__recorder_get_fs__(), F__recorder_get_id__(), F__recorder_get_nbits__(), F__recorder_get_sample_number__(), F__recorder_get_tag__(), F__recorder_get_total_samples__(), F__recorder_get_userdata__(), F__recorder_getaudiodata__(), F__recorder_isrecording__(), F__unicode2native__(), F__version_info__(), F__voronoi__(), Faddpath(), Fairy(), Farrayfun(), octave_map::fast_elem_extract(), octave_map::fast_elem_insert(), octave_struct::fast_elem_insert(), Fatan2(), Fatexit(), Faudiodevinfo(), Fbalance(), Fbase64_decode(), Fbase64_encode(), Fbesselh(), Fbitpack(), Fbitshift(), Fbitunpack(), Fblkmm(), Fbsxfun(), Fbuiltin(), Fccolamd(), Fcd(), Fcellfun(), Fchar(), Fchol(), Fchol2inv(), Fcholdelete(), Fcholinsert(), Fcholinv(), Fcholshift(), Fcholupdate(), Fclass(), octave::fcn_file_in_path(), octave::stack_frame::fcn_name(), octave::load_path::package_info::fcn_names(), Fcolamd(), Fcomplex(), Fconv2(), Fconvhulln(), Fconvn(), Fcsymamd(), Fcumsum(), Fdaspk_options(), Fdasrt_options(), Fdassl_options(), Fdbstatus(), Fdbstop(), Fdet(), Fdiag(), Fdisp(), Fdot(), Feig(), Feps(), Ferrno(), Ferror(), Fetree(), Fevalc(), Feye(), Ffflush(), Ffftw(), Ffilesep(), Ffilter(), Ffind(), Ffopen(), Fformat(), Ffunc2str(), Fgcd(), Fgenpath(), Fget(), Fgivens(), Fgsvd(), Fhess(), Fhex2num(), Fhistory_control(), Fhistory_file(), Fhistory_save(), Fhistory_size(), Fhypot(), octave_fields::fieldnames(), Fignore_function_time_stamp(), octave::QUIWidgetCreator::file_dialog(), octave::load_path::files(), fill_matrix(), octave::stream::finalize_read(), octave::fcn_info::fcn_info_rep::find(), Array< T >::find(), Find2sub(), octave::find_bkpt_list(), octave::load_path::find_dir(), octave::load_path::find_dir_info(), octave::load_path::package_info::find_fcn(), octave::find_fcn_by_line(), octave::load_path::find_file(), octave::dynamic_loader::shlibs_list::find_file(), octave::load_path::find_first_of(), octave::load_path::package_info::find_method(), octave::fcn_info::fcn_info_rep::find_method(), find_nonzero_elem_idx(), octave::cdef_manager::find_package(), octave_class::find_parent_class(), octave::load_path::package_info::find_private_fcn(), octave::find_private_file(), octave::base_parser::finish_array_list(), octave::scanf_format_list::finish_conversion(), octave::textscan_format_list::finish_conversion(), octave::base_parser::finish_function(), octave::base_parser::finish_if_command(), octave::base_parser::finish_switch_command(), Fintmax(), Fintmin(), Finv(), ComplexMatrix::finverse(), Matrix::finverse(), FloatComplexMatrix::finverse(), FloatMatrix::finverse(), Fis_same_file(), Fisfield(), Fisindex(), Fiskeyword(), Fissorted(), Fisvarname(), Fkron(), octave::variable_editor_model::flags(), octave::workspace_model::flags(), Flinspace(), octave_complex::float_array_value(), octave_float_complex::float_array_value(), octave_uint64_matrix::float_array_value(), octave_uint64_scalar::float_array_value(), octave_uint64_matrix::float_complex_array_value(), octave_uint64_scalar::float_complex_array_value(), octave_uint64_matrix::float_complex_matrix_value(), octave_uint64_scalar::float_complex_matrix_value(), octave_base_diag< DMT, MT >::float_complex_value(), octave_bool_matrix::float_complex_value(), octave_char_matrix::float_complex_value(), octave_complex_matrix::float_complex_value(), octave_float_complex_matrix::float_complex_value(), octave_float_matrix::float_complex_value(), octave_perm_matrix::float_complex_value(), octave_range::float_complex_value(), octave_matrix::float_complex_value(), octave_complex_diag_matrix::float_diag_matrix_value(), octave_float_complex_diag_matrix::float_diag_matrix_value(), octave::stream::float_format(), octave::mach_info::float_format_as_string(), float_format_to_mopt_digit(), octave_complex::float_matrix_value(), octave_complex_matrix::float_matrix_value(), octave_float_complex::float_matrix_value(), octave_float_complex_matrix::float_matrix_value(), octave_uint64_matrix::float_matrix_value(), octave_uint64_scalar::float_matrix_value(), octave_base_diag< FloatComplexDiagMatrix, FloatComplexMatrix >::float_value(), octave_uint64_matrix::float_value(), Flog2(), Flogical(), Flookup(), Flsode_options(), Flu(), octave::base_stream::flush(), octave::stream::flush(), Fmat2cell(), Fmatrix_type(), Fmerge(), Fmgorth(), Fmkstemp(), Fmod(), Fnargin(), Fnargout(), Fnewline(), Fnorm(), Fnth_element(), Fnum2cell(), Fnumel(), fopen_mode_to_ios_mode(), Fordschur(), octave::format(), ComplexNDArray::fourier(), NDArray::fourier(), FloatComplexNDArray::fourier(), FloatNDArray::fourier(), ComplexMatrix::fourier(), Matrix::fourier(), FloatComplexMatrix::fourier(), FloatMatrix::fourier(), ComplexMatrix::fourier2d(), ComplexNDArray::fourier2d(), Matrix::fourier2d(), NDArray::fourier2d(), FloatComplexMatrix::fourier2d(), FloatComplexNDArray::fourier2d(), FloatMatrix::fourier2d(), FloatNDArray::fourier2d(), ComplexNDArray::fourierNd(), NDArray::fourierNd(), FloatComplexNDArray::fourierNd(), FloatNDArray::fourierNd(), Fpause(), Fpinv(), Fpopen(), Fprod(), Fpsi(), Fqr(), Fqrdelete(), Fqrinsert(), Fqrshift(), Fqrupdate(), Fquad_options(), Fqz(), Frcond(), Freaddir(), freeze(), Fregexp(), Fregexprep(), Frem(), Frepelems(), Freshape(), Fresize(), Frmpath(), Fschur(), Fset(), Fsize(), ComplexMatrix::fsolve(), FloatComplexMatrix::fsolve(), FloatMatrix::fsolve(), Matrix::fsolve(), SparseComplexMatrix::fsolve(), SparseMatrix::fsolve(), Fsort(), Fsparse(), Fspparms(), Fsprintf(), Fsqrtm(), Fsscanf(), Fstat(), Fstr2double(), Fstrfind(), Fstrrep(), Fsum(), Fsvd(), Fsylvester(), Fsymamd(), Fsymbfact(), Fsystem(), Ftic(), Ftmpfile(), Ftoc(), Ftypecast(), octave::dynamic_library::dynlib_rep::function_names(), octave::profiler::stats::function_set_value(), Furlread(), Furlwrite(), Fvec(), Fwarning(), Fwinqueryreg(), octave::rand::gamma(), octave::tm_const::generic_concat(), octave::genpath(), octave::load_path::get_all_package_names(), octave::tree_argument_list::get_arg_names(), get_array_elements(), octave::bp_table::get_breakpoint_list(), get_column_width(), octave::base_lexer::comment_buffer::get_comment(), octave::get_concat_class(), octave_class::get_current_method_class(), get_current_shlib(), mxArray_octave_value::get_data(), figure::get_default(), axes::get_default(), uitoolbar::get_default(), octave::rand::get_dist_id(), get_elt_idx(), get_field(), mxArray_struct::get_field_number(), octave::load_save_system::get_file_format(), octave::load_path::get_file_list(), octave::stream_list::get_file_number(), octave::profiler::get_flat(), get_graphics_object_type(), gh_manager::get_handle(), octave::url_handle_manager::get_handle(), octave::get_help_from_file(), octave::profiler::tree_node::get_hierarchical(), octave::profiler::get_hierarchical(), mxArray_octave_value::get_imag_data(), octave::stream_list::get_info(), octave::dynamic_library::dynlib_rep::get_instance(), octave::file_info::get_line(), octave::file_info::get_line_offsets(), octave::file_info::get_lines(), get_mat_data_input_line(), octave::printf_value_cache::get_next_value(), mxArray_matlab::get_number_of_elements(), get_object_dims(), octave::get_P_tmpdir(), QtHandles::qt_graphics_toolkit::get_pixels(), QtHandles::ObjectProxy::get_pixels(), mxArray_octave_value::get_property(), get_ra_idx(), mxArray_number::get_scalar(), get_scalar_idx(), get_scan_string_data(), octave::get_size(), mxArray_octave_value::get_string(), mxArray_number::get_string(), get_struct_elts(), octave::text_renderer::get_system_fonts(), octave::gtk_manager::get_toolkit(), octave::math::qr< T >::get_type(), octave::delimited_stream::get_undelim(), octave::cdef_property::cdef_property_rep::get_value(), octave::opengl_renderer::get_viewport_scaled(), octave::sys::getcwd(), octave::stream::getl(), octave::stream::gets(), octave::sys::glob(), octave::call_stack::global_variable_names(), octave::call_stack::goto_frame(), octave::handle_delete(), octave::url_handle_manager::handle_list(), handle_message(), have_gnuplot_binary(), hdf5_add_attr(), hdf5_add_scalar_attr(), hdf5_check_attr(), hdf5_get_scalar_attr(), hdf5_read_next_data_internal(), SparseComplexMatrix::hermitian(), identity_matrix(), ComplexNDArray::ifourier(), FloatComplexNDArray::ifourier(), FloatNDArray::ifourier(), ComplexMatrix::ifourier(), Matrix::ifourier(), FloatComplexMatrix::ifourier(), FloatMatrix::ifourier(), ComplexMatrix::ifourier2d(), ComplexNDArray::ifourier2d(), Matrix::ifourier2d(), NDArray::ifourier2d(), FloatComplexMatrix::ifourier2d(), FloatComplexNDArray::ifourier2d(), FloatMatrix::ifourier2d(), FloatNDArray::ifourier2d(), ComplexNDArray::ifourierNd(), NDArray::ifourierNd(), FloatComplexNDArray::ifourierNd(), FloatNDArray::ifourierNd(), octave::ignore_interrupts(), octave::tree_evaluator::ignored_fcn_outputs(), idx_vector::increment(), ind2sub(), Range::index(), octave_map::index(), Sparse< T >::index(), Array< T >::index(), Cell::index(), index_in_bounds(), octave::octave_lvalue::index_is_colon(), octave::octave_lvalue::index_is_empty(), octave::environment::init_editor(), octave::init_inf_nan(), initial_class_path(), octave_fstream::input_stream(), octave::base_lexer::inside_any_object_index(), octave::type_info::installed_type_info(), octave::type_info::installed_type_names(), octave::ft_manager::instance_ok(), octave_errno::instance_ok(), octave::fftw_planner::instance_ok(), octave::float_fftw_planner::instance_ok(), octave::rand::instance_ok(), octave_sparse_params::instance_ok(), octave::sys::env::instance_ok(), octave::command_editor::instance_ok(), octave::command_history::instance_ok(), singleton_cleanup_list::instance_ok(), octave_char_matrix::int64_scalar_value(), DASRT::integrate(), DASPK::integrate(), DASSL::integrate(), octave::command_editor::interrupt(), intfield(), intmap_to_ov(), ComplexDiagMatrix::inverse(), DiagMatrix::inverse(), FloatComplexDiagMatrix::inverse(), FloatDiagMatrix::inverse(), octave::math::sparse_chol< chol_type >::inverse(), idx_vector::inverse_permutation(), mxArray_base::is_class(), octave::call_stack::is_class_constructor_executing(), octave::call_stack::is_class_method_executing(), octave_classdef_meta::is_classdef_constructor(), octave_classdef_meta::is_classdef_method(), octave::is_dummy_method(), octave::is_end(), octave::tree_statement::is_end_of_fcn_or_script(), octave::tree_statement::is_end_of_file(), is_handle_visible(), octave_class::is_instance_of(), octave::regexp::is_match(), MDiagArray2< T >::is_multiple_of_identity(), octave::stream::is_open(), idx_vector::is_permutation(), is_scalar(), octave_sort< T >::is_sorted_rows(), octave_cell::is_sorted_rows(), octave::is_superclass(), octave_base_matrix< MT >::is_true(), octave_base_sparse< T >::is_true(), octave_class::is_true(), octave_range::is_true(), octave::tree_argument_list::is_valid_lvalue_list(), Cell::iscellstr(), octave_cell::iscellstr(), ishghandle(), octave_sort< T >::issorted(), octave_cell::issorted(), QtHandles::itemFor(), string_vector::join(), jstring_to_string(), octave::sys::lapack_version(), lin_interpn(), linspace(), octave::curl_transfer::list(), octave::load_save_system::load(), octave::fcn_info::fcn_info_rep::load_class_constructor(), octave::fcn_info::fcn_info_rep::load_class_method(), octave::load_fcn_from_file(), octave_bool_matrix::load_hdf5(), octave_sparse_bool_matrix::load_hdf5(), octave_cell::load_hdf5(), octave_class::load_hdf5(), octave_complex::load_hdf5(), octave_complex_matrix::load_hdf5(), octave_sparse_complex_matrix::load_hdf5(), octave_float_complex::load_hdf5(), octave_float_complex_matrix::load_hdf5(), octave_float_matrix::load_hdf5(), octave_range::load_hdf5(), octave_matrix::load_hdf5(), octave_sparse_matrix::load_hdf5(), octave_char_matrix_str::load_hdf5(), octave_struct::load_hdf5(), octave_scalar_struct::load_hdf5(), load_hdf5_empty(), octave_base_int_matrix< T >::load_hdf5_internal(), load_inline_fcn(), octave::dynamic_loader::load_mex(), octave::dynamic_loader::load_oct(), octave::load_out_of_date_fcn(), octave::fcn_info::fcn_info_rep::load_private_function(), octave::load_save_system::load_vars(), octave::symbol_scope_rep::localfunctions(), octave::math::log1p(), looks_like_mat_ascii_file(), property_list::lookup(), Array< octave_value * >::lookup(), pval_vector::lookup(), octave_sort< T >::lookup(), octave::stream_list::lookup(), octave::tree_evaluator::lookup_autoload(), octave::lookup_classes(), octave::type_info::lookup_type(), lsode_user_function(), lsode_user_jacobian(), ComplexMatrix::lssolve(), FloatComplexMatrix::lssolve(), FloatMatrix::lssolve(), Matrix::lssolve(), ltsolve(), ComplexMatrix::ltsolve(), FloatComplexMatrix::ltsolve(), FloatMatrix::ltsolve(), Matrix::ltsolve(), SparseComplexMatrix::ltsolve(), SparseMatrix::ltsolve(), octave::tree_black_hole::lvalue(), octave::tree_index_expression::lvalue(), main(), octave::make_absolute(), octave::base_parser::make_anon_fcn_handle(), octave::base_parser::make_classdef(), octave::base_parser::make_classdef_enum_block(), octave::base_parser::make_classdef_events_block(), octave::base_parser::make_classdef_methods_block(), octave::base_parser::make_classdef_properties_block(), octave::base_parser::make_colon_expression(), octave::base_parser::make_constant(), octave::base_parser::make_decl_command(), octave::make_fcn_handle(), octave::tree_evaluator::make_fcn_handle(), octave::base_parser::make_fcn_handle(), octave::base_parser::make_for_command(), octave::base_parser::make_function(), make_graphics_object(), octave::base_parser::make_index_expression(), octave::base_parser::make_indirect_ref(), make_java_index(), octave::tree_evaluator::make_lvalue_list(), octave::cdef_class::make_meta_class(), make_option_struct(), octave::error_system::make_stack_map(), octave::base_parser::make_try_command(), octave::base_parser::make_unwind_command(), make_valid_identifier(), octave::tree_evaluator::make_value_list(), octave::base_parser::make_while_command(), QtHandles::Utils::makeKeyEventStruct(), QtHandles::Utils::makeScrollEventStruct(), Cell::map(), octave_base_sparse< T >::map(), octave_char_matrix::map(), octave_complex_diag_matrix::map(), octave_float_complex_diag_matrix::map(), octave_float_diag_matrix::map(), octave_diag_matrix::map(), octave::map2Cell(), octave::symbol_info_accumulator::map_value(), octave::cdef_object::map_value(), mark_upper_triangular(), octave::regexp::match(), glob_match::match(), octave_complex::matrix_value(), octave_complex_matrix::matrix_value(), octave_sparse_complex_matrix::matrix_value(), octave_float_complex::matrix_value(), octave_float_complex_matrix::matrix_value(), octave_uint64_matrix::matrix_value(), octave_uint64_scalar::matrix_value(), SparseBoolMatrix::matrix_value(), Range::max(), maybe_optimized_builtin(), octave::tree::meets_bp_condition(), octave::cdef_class::cdef_class_rep::meta_subsref(), octave::cdef_method::cdef_method_rep::meta_subsref(), octave::cdef_package::cdef_package_rep::meta_subsref(), octave_user_function::method_type_str(), octave::load_path::package_info::methods(), mexCallMATLAB(), mexEvalString(), mexGetVariable(), mexIsLocked(), mexPrintf(), Range::min(), octave::interpreter::mislocked(), mk_pw_map(), octave::math::mod(), octave::stream::mode(), octave::stream::mode_as_string(), octave::stream::name(), name_matches_any_pattern(), octave::symbol_info_accumulator::names(), octave::symbol_info_list::names(), octave::sys::file_ops::native_separator_path(), Array< T >::nnz(), Range::nnz(), octave::type_info::non_const_unary_ops_map(), octave::rand::normal(), null(), num_ones(), dim_vector::num_ones(), dim_vector::numel(), Range::numel_internal(), octave_base_value::numeric_assign(), octave_class::numeric_conv(), octave_struct::numeric_conv(), octave_scalar_struct::numeric_conv(), octave_async_system_wrapper(), octave_fgetl(), octave_fgets(), octave_get_float_format(), octave_getcwd_wrapper(), octave_getopt_long_wrapper(), octave_read_value(), octave_wait_for_input(), octcellregexp(), octregexp(), octave::stream_list::open_file_numbers(), octave::tree_boolean_expression::oper(), operator*(), kpse_path_iterator::operator++(), operator-(), Array< T >::optimize_dimensions(), glob_match::opts_to_fnmatch_flags(), octave_scalar_map::orderfields(), octave_map::orderfields(), octave::base_stream::oscanf(), octave::stream::oscanf(), octave::out_of_date_check(), octave_fstream::output_stream(), octave::load_path::overloads(), octave::package_fromName(), octave::package_get_classes(), octave::package_get_functions(), octave::package_get_packages(), octave::pager_event_handler(), papersize_from_type(), octave::symbol_table::parent_classes(), octave::textscan_format_list::parse_char_class(), octave::load_save_system::parse_save_options(), octave::delimited_stream::peek_undelim(), octave_map::permute(), Array< T >::permute(), QtHandles::pointer_to_qimage(), octave::opengl_renderer::points_to_pixels(), octave::rand::poisson(), pow(), octave::pown(), octave::config::prepend_home_dir(), prepend_home_dir(), octave_cell::print_name_tag(), octave_range::print_name_tag(), octave_struct::print_name_tag(), octave_scalar_struct::print_name_tag(), octave::stream::printf(), octave::property_get_defaultvalue(), ComplexDiagMatrix::pseudo_inverse(), ComplexMatrix::pseudo_inverse(), DiagMatrix::pseudo_inverse(), FloatComplexMatrix::pseudo_inverse(), FloatComplexDiagMatrix::pseudo_inverse(), FloatDiagMatrix::pseudo_inverse(), octave::base_stream::puts(), octave::stream::puts(), octave::curl_transfer::pwd(), quad_float_user_function(), quad_user_function(), octave::rand_gamma(), octave::delimited_stream::read(), octave::stream::read(), octave::sys::dir_entry::read(), read_binary_data(), octave::textscan::read_double(), octave::textscan_format_list::read_first_row(), octave::textscan::read_format_once(), read_hdf5_data(), read_images(), read_indexed_images(), read_mat5_binary_element(), read_mat_binary_data(), octave::textscan::read_until(), READABLE(), octave::command_editor::readline(), octave_polygon::reconstruct(), octave_class::reconstruct_exemplar(), octave_class::reconstruct_parents(), dim_vector::redim(), octave::delimited_stream::refresh_buf(), octave::math::lu< T >::regular(), octave::math::qr< T >::regular(), reinterpret_copy(), reinterpret_int_copy(), octave::math::rem(), octave::stream_list::remove(), octave::load_path::remove(), octave::tree_statement_list::remove_all_breakpoints(), octave::bp_table::remove_all_breakpoints_in_file(), octave::bp_table::remove_breakpoint(), octave::bp_table::remove_breakpoint_1(), octave::dynamic_library::dynlib_rep::remove_fcn_name(), octave::tree_argument_list::remove_front(), octave::dynamic_loader::remove_oct(), octave::debugger::repl(), octave::regexp::replace(), octave_map::reshape(), octave_class::reshape(), Sparse< T >::reshape(), octave_base_diag< FloatComplexDiagMatrix, FloatComplexMatrix >::resize(), octave_base_diag< DMT, MT >::resize(), octave_base_matrix< MT >::resize(), octave_bool::resize(), octave_complex::resize(), octave_float_scalar::resize(), octave_float_complex::resize(), octave_uint64_scalar::resize(), octave_range::resize(), octave_scalar::resize(), octave_char_matrix_str::resize(), octave_base_sparse< T >::resize(), octave_class::resize(), octave_char_matrix_sq_str::resize(), ComplexDiagMatrix::row(), SparseComplexMatrix::row(), DiagMatrix::row(), SparseMatrix::row(), FloatComplexDiagMatrix::row(), FloatDiagMatrix::row(), charMatrix::row_as_string(), ComplexMatrix::row_is_real_only(), FloatComplexMatrix::row_is_real_only(), run_command_and_return_output(), octave::same_file_internal(), sanitize(), octave::load_save_system::save(), octave::simple_fcn_handle::save_hdf5(), octave_bool_matrix::save_hdf5(), octave_sparse_bool_matrix::save_hdf5(), octave_bool::save_hdf5(), octave_complex::save_hdf5(), octave_complex_matrix::save_hdf5(), octave_sparse_complex_matrix::save_hdf5(), octave::anonymous_fcn_handle::save_hdf5(), octave_float_scalar::save_hdf5(), octave_float_complex::save_hdf5(), octave_float_complex_matrix::save_hdf5(), octave_float_matrix::save_hdf5(), octave_range::save_hdf5(), octave_matrix::save_hdf5(), octave_sparse_matrix::save_hdf5(), octave_scalar::save_hdf5(), octave_char_matrix_str::save_hdf5(), save_hdf5_empty(), octave_base_int_matrix< T >::save_hdf5_internal(), octave_base_int_scalar< T >::save_hdf5_internal(), octave_oncleanup::scalar_map_value(), log_scaler::scale(), neg_log_scaler::scale(), octave::base_stream::scanf(), octave::stream::scanf(), scanf_internal(), octave::stream::seek(), octave_errno::set(), set_internal_variable(), octave::set_interrupt_handler(), octave::curl_transfer::set_istream(), octave::curl_transfer::set_ostream(), show_DASPK_options(), show_DASRT_options(), show_DASSL_options(), show_LSODE_options(), show_Quad_options(), octave_class::size(), octave::stream::skipl(), octave_value_list::slice(), QtHandles::Figure::slotGetPixels(), octave::file_info::snarf_file(), ComplexMatrix::solve(), FloatComplexMatrix::solve(), FloatMatrix::solve(), Matrix::solve(), SparseComplexMatrix::solve(), SparseMatrix::solve(), octave_cell::sort(), Range::sort(), octave_cell::sort_rows_idx(), octave_complex_matrix::sparse_matrix_value(), octave_sparse_complex_matrix::sparse_matrix_value(), octave_float_complex_matrix::sparse_matrix_value(), octave_value_list::splice(), octave::split_path(), octave_map::squeeze(), Array< T >::squeeze(), ComplexColumnVector::stack(), ColumnVector::stack(), FloatComplexColumnVector::stack(), FloatColumnVector::stack(), FloatComplexMatrix::stack(), FloatMatrix::stack(), ComplexMatrix::stack(), Matrix::stack(), stack_complex_matrix(), octave::base_parser::start_classdef_external_method(), string_vector::std_list(), octave::bp_table::stop_on_err_warn_status(), dim_vector::str(), color_values::str2rgb(), octave::tree::str_print_code(), octave::stream::stream_ok(), octave::sys::base_tm::strftime(), oct_data_conv::string_to_data_type(), octave::mach_info::string_to_float_format(), octave_class::string_vector_value(), octave_cell::string_vector_value(), octave_char_matrix_str::string_vector_value(), Cell::string_vector_value(), stringfield(), mxArray::strsave(), sub2ind(), octave::cdef_object_array::subsasgn(), octave::cdef_object_scalar::subsasgn(), octave_base_matrix< MT >::subsasgn(), octave_base_scalar< ST >::subsasgn(), octave_base_sparse< T >::subsasgn(), octave_base_value::subsasgn(), octave_cell::subsasgn(), octave_classdef::subsasgn(), octave_struct::subsasgn(), octave_scalar_struct::subsasgn(), octave_class::subsasgn_common(), octave_user_function::subsasgn_optimization_ok(), octave_struct::subsref(), octave_base_diag< DMT, MT >::subsref(), octave_base_matrix< MT >::subsref(), octave_base_scalar< ST >::subsref(), octave_java::subsref(), octave_perm_matrix::subsref(), octave_range::subsref(), octave_scalar_struct::subsref(), octave_cell::subsref(), octave_class::subsref(), octave_classdef::subsref(), octave::base_fcn_handle::subsref(), octave::cdef_object_array::subsref(), octave::cdef_object_scalar::subsref(), SparseBoolMatrix::sum(), Sylvester(), octave::symbol_info_accumulator::symbol_info(), octave::symbol_scope_rep::symbol_list(), octave::file_editor_tab_widget::tab_list(), octave::stream::tell(), octave::sys::tempnam(), octave::sys::file_ops::tilde_expand(), ComplexMatrix::tinverse(), Matrix::tinverse(), SparseComplexMatrix::tinverse(), SparseMatrix::tinverse(), FloatComplexMatrix::tinverse(), FloatMatrix::tinverse(), tmp_objfile_name(), octave_base_diag< FloatComplexDiagMatrix, FloatComplexMatrix >::to_dense(), octave_map::transpose(), MatrixType::transpose(), PermMatrix::transpose(), Sparse< T >::transpose(), SparseComplexMatrix::trisolve(), SparseMatrix::trisolve(), try_cellfun_internal_ops(), octave_bool_matrix::try_narrowing_conversion(), octave_sparse_bool_matrix::try_narrowing_conversion(), octave_complex::try_narrowing_conversion(), octave_complex_diag_matrix::try_narrowing_conversion(), octave_complex_matrix::try_narrowing_conversion(), octave_sparse_complex_matrix::try_narrowing_conversion(), octave_float_complex::try_narrowing_conversion(), octave_float_complex_diag_matrix::try_narrowing_conversion(), octave_float_complex_matrix::try_narrowing_conversion(), octave_float_diag_matrix::try_narrowing_conversion(), octave_float_matrix::try_narrowing_conversion(), octave_lazy_index::try_narrowing_conversion(), octave_perm_matrix::try_narrowing_conversion(), octave_range::try_narrowing_conversion(), octave_diag_matrix::try_narrowing_conversion(), octave_matrix::try_narrowing_conversion(), octave_sparse_matrix::try_narrowing_conversion(), octave_struct::try_narrowing_conversion(), octave::string::u8_from_encoding(), u8_from_wchar(), octave::sys::u8_from_wstring(), octave::string::u8_to_encoding(), u8_to_wchar(), octave::sys::u8_to_wstring(), octave_char_matrix::uint64_scalar_value(), octave::type_info::unary_ops_map(), octave::file_editor_tab::unchanged_or_saved(), idx_vector::idx_vector_rep::unconvert(), idx_vector::idx_mask_rep::unconvert(), octave::undo_string_escape(), octave::undo_string_escapes(), octave::rand::uniform(), octave_class::unique_parent_class(), unstack_complex_matrix(), octave::symbol_table::user_function_names(), utsolve(), ComplexMatrix::utsolve(), FloatComplexMatrix::utsolve(), FloatMatrix::utsolve(), Matrix::utsolve(), SparseComplexMatrix::utsolve(), SparseMatrix::utsolve(), octave::tree_evaluator::value_stack< T >::val_pop(), valid_key(), radio_values::validate(), octave::base_parser::validate_array_list(), octave::base_parser::validate_matrix_for_assignment(), octave::stack_frame::value(), base_graphics_object::value_as_string(), radio_values::values_as_cell(), base_graphics_object::values_as_string(), radio_values::values_as_string(), base_graphics_object::values_as_struct(), octave::stack_frame::variable_names(), octave::tree_argument_list::variable_names(), octave::tree_decl_init_list::variable_names(), octave::tree_parameter_list::variable_names(), octave::vasprintf(), octave::child_list::wait(), octave::sys::waitpid(), wants_local_change(), octave::error_system::warning_enabled(), octave::error_system::warning_query(), octave::sys::windows_glob(), octave::stream::write(), xcolnorms(), xfrobnorm(), xgemm(), xnorm(), octave_class::xnumel(), octave_classdef::xnumel(), xpow(), xrownorms(), octave::math::zbesh1(), octave::math::zbesh2(), octave::math::zbesi(), octave::math::zbesj(), octave::math::zbesk(), and octave::math::zbesy().

◆ Vdisable_diagonal_matrix

bool Vdisable_diagonal_matrix = false
static

Definition at line 100 of file ov.cc.

◆ Vdisable_permutation_matrix

bool Vdisable_permutation_matrix = false
static

Definition at line 104 of file ov.cc.

◆ Vdisable_range

bool Vdisable_range = false
static

Definition at line 108 of file ov.cc.