GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
lsode.cc File Reference
#include <string>
#include <iomanip>
#include <iostream>
#include "LSODE.h"
#include "lo-mappers.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "ovl.h"
#include "ov-fcn.h"
#include "ov-cell.h"
#include "pager.h"
#include "parse.h"
#include "pr-output.h"
#include "unwind-prot.h"
#include "utils.h"
#include "variables.h"
#include "LSODE-opts.cc"
Include dependency graph for lsode.cc:

Go to the source code of this file.

Functions

OCTAVE_EXPORT octave_value_list Flsode (octave::interpreter &interp, const octave_value_list &args, int nargout) ar
 
ColumnVector lsode_user_function (const ColumnVector &x, double t)
 
Matrix lsode_user_jacobian (const ColumnVector &x, double t)
 

Variables

static int call_depth = 0
 
static octave_functionlsode_fcn
 
static octave_functionlsode_jac
 
static bool warned_fcn_imaginary = false
 
static bool warned_jac_imaginary = false
 

Function Documentation

◆ Flsode()

◆ lsode_user_function()

ColumnVector lsode_user_function ( const ColumnVector x,
double  t 
)

◆ lsode_user_jacobian()

Matrix lsode_user_jacobian ( const ColumnVector x,
double  t 
)

Variable Documentation

◆ call_depth

int call_depth = 0
static

Definition at line 61 of file lsode.cc.

Referenced by Flsode().

◆ lsode_fcn

octave_function* lsode_fcn
static

Definition at line 51 of file lsode.cc.

Referenced by Flsode(), and lsode_user_function().

◆ lsode_jac

octave_function* lsode_jac
static

Definition at line 54 of file lsode.cc.

Referenced by Flsode(), and lsode_user_jacobian().

◆ warned_fcn_imaginary

bool warned_fcn_imaginary = false
static

Definition at line 57 of file lsode.cc.

Referenced by Flsode(), and lsode_user_function().

◆ warned_jac_imaginary

bool warned_jac_imaginary = false
static

Definition at line 58 of file lsode.cc.

Referenced by Flsode(), and lsode_user_jacobian().