GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Public Member Functions | Protected Attributes | Private Attributes | List of all members
LSODE_options Class Reference

#include "LSODE-opts.h"

Inheritance diagram for LSODE_options:
Inheritance graph
[legend]
Collaboration diagram for LSODE_options:
Collaboration graph
[legend]

Public Member Functions

 LSODE_options (void)
 LSODE_options (const LSODE_options &opt)
 ~LSODE_options (void)
Array< doubleabsolute_tolerance (void) const
void init (void)
double initial_step_size (void) const
std::string integration_method (void) const
octave_idx_type maximum_order (void) const
double maximum_step_size (void) const
double minimum_step_size (void) const
LSODE_optionsoperator= (const LSODE_options &opt)
double relative_tolerance (void) const
void set_absolute_tolerance (double val)
void set_absolute_tolerance (const Array< double > &val)
void set_default_options (void)
void set_initial_step_size (double val)
void set_integration_method (const std::string &val)
void set_maximum_order (octave_idx_type val)
void set_maximum_step_size (double val)
void set_minimum_step_size (double val)
void set_options (const LSODE_options &opt)
void set_relative_tolerance (double val)
void set_step_limit (octave_idx_type val)
octave_idx_type step_limit (void) const

Protected Attributes

bool reset

Private Attributes

Array< doublex_absolute_tolerance
double x_initial_step_size
std::string x_integration_method
octave_idx_type x_maximum_order
double x_maximum_step_size
double x_minimum_step_size
double x_relative_tolerance
octave_idx_type x_step_limit

Detailed Description

Definition at line 13 of file LSODE-opts.h.

Constructor & Destructor Documentation

LSODE_options::LSODE_options ( void  )
inline

Definition at line 18 of file LSODE-opts.h.

LSODE_options::LSODE_options ( const LSODE_options opt)
inline

Definition at line 32 of file LSODE-opts.h.

LSODE_options::~LSODE_options ( void  )
inline

Definition at line 62 of file LSODE-opts.h.

Member Function Documentation

Array<double> LSODE_options::absolute_tolerance ( void  ) const
inline

Definition at line 132 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

void LSODE_options::init ( void  )
inline

Definition at line 64 of file LSODE-opts.h.

double LSODE_options::initial_step_size ( void  ) const
inline

Definition at line 141 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

std::string LSODE_options::integration_method ( void  ) const
inline

Definition at line 138 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

octave_idx_type LSODE_options::maximum_order ( void  ) const
inline

Definition at line 144 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

double LSODE_options::maximum_step_size ( void  ) const
inline

Definition at line 147 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

double LSODE_options::minimum_step_size ( void  ) const
inline

Definition at line 150 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

LSODE_options& LSODE_options::operator= ( const LSODE_options opt)
inline
double LSODE_options::relative_tolerance ( void  ) const
inline

Definition at line 135 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

void LSODE_options::set_absolute_tolerance ( double  val)
inline

Definition at line 93 of file LSODE-opts.h.

Referenced by set_LSODE_options().

void LSODE_options::set_absolute_tolerance ( const Array< double > &  val)
inline

Definition at line 100 of file LSODE-opts.h.

void LSODE_options::set_default_options ( void  )
inline

Definition at line 91 of file LSODE-opts.h.

void LSODE_options::set_initial_step_size ( double  val)
inline

Definition at line 118 of file LSODE-opts.h.

Referenced by set_LSODE_options().

void LSODE_options::set_integration_method ( const std::string &  val)
inline

Definition at line 106 of file LSODE-opts.h.

References current_liboctave_error_handler.

Referenced by set_LSODE_options().

void LSODE_options::set_maximum_order ( octave_idx_type  val)
inline

Definition at line 121 of file LSODE-opts.h.

Referenced by set_LSODE_options().

void LSODE_options::set_maximum_step_size ( double  val)
inline

Definition at line 124 of file LSODE-opts.h.

Referenced by set_LSODE_options().

void LSODE_options::set_minimum_step_size ( double  val)
inline

Definition at line 127 of file LSODE-opts.h.

Referenced by set_LSODE_options().

void LSODE_options::set_options ( const LSODE_options opt)
inline
void LSODE_options::set_relative_tolerance ( double  val)
inline

Definition at line 103 of file LSODE-opts.h.

Referenced by set_LSODE_options().

void LSODE_options::set_step_limit ( octave_idx_type  val)
inline

Definition at line 130 of file LSODE-opts.h.

Referenced by set_LSODE_options().

octave_idx_type LSODE_options::step_limit ( void  ) const
inline

Definition at line 153 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), print_LSODE_options(), and show_LSODE_options().

Member Data Documentation

bool LSODE_options::reset
protected

Definition at line 169 of file LSODE-opts.h.

Referenced by LSODE::do_integrate(), operator=(), and set_options().

Array<double> LSODE_options::x_absolute_tolerance
private

Definition at line 158 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

double LSODE_options::x_initial_step_size
private

Definition at line 161 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

std::string LSODE_options::x_integration_method
private

Definition at line 160 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

octave_idx_type LSODE_options::x_maximum_order
private

Definition at line 162 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

double LSODE_options::x_maximum_step_size
private

Definition at line 163 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

double LSODE_options::x_minimum_step_size
private

Definition at line 164 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

double LSODE_options::x_relative_tolerance
private

Definition at line 159 of file LSODE-opts.h.

Referenced by operator=(), and set_options().

octave_idx_type LSODE_options::x_step_limit
private

Definition at line 165 of file LSODE-opts.h.

Referenced by operator=(), and set_options().


The documentation for this class was generated from the following file: