GNU Octave  4.0.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
Macros | Functions | Variables
dasrt.cc File Reference
#include <iostream>
#include <string>
#include "DASRT.h"
#include "lo-mappers.h"
#include "defun.h"
#include "error.h"
#include "gripes.h"
#include "oct-obj.h"
#include "ov-fcn.h"
#include "ov-cell.h"
#include "pager.h"
#include "parse.h"
#include "unwind-prot.h"
#include "utils.h"
#include "variables.h"
#include "DASRT-opts.cc"
Include dependency graph for dasrt.cc:

Go to the source code of this file.

Macros

#define DASRT_ABORT   return retval
 
#define DASRT_ABORT1(msg)
 
#define DASRT_ABORT2(fmt, arg)
 

Functions

static ColumnVector dasrt_user_cf (const ColumnVector &x, double t)
 
static ColumnVector dasrt_user_f (const ColumnVector &x, const ColumnVector &xdot, double t, octave_idx_type &)
 
static Matrix dasrt_user_j (const ColumnVector &x, const ColumnVector &xdot, double t, double cj)
 
OCTAVE_EXPORT octave_value_list Fdasrt (const octave_value_list &args, int nargout)
 

Variables

static int call_depth = 0
 
static octave_functiondasrt_cf
 
static octave_functiondasrt_f
 
static octave_functiondasrt_j
 
static bool warned_cf_imaginary = false
 
static bool warned_fcn_imaginary = false
 
static bool warned_jac_imaginary = false
 

Macro Definition Documentation

#define DASRT_ABORT   return retval

Definition at line 190 of file dasrt.cc.

Referenced by Fdasrt().

#define DASRT_ABORT1 (   msg)
Value:
do \
{ \
::error ("dasrt: " msg); \
} \
while (0)
void error(const char *fmt,...)
Definition: error.cc:476
#define DASRT_ABORT
Definition: dasrt.cc:190

Definition at line 193 of file dasrt.cc.

Referenced by Fdasrt().

#define DASRT_ABORT2 (   fmt,
  arg 
)
Value:
do \
{ \
::error ("dasrt: " fmt, arg); \
} \
while (0)
void error(const char *fmt,...)
Definition: error.cc:476
double arg(double x)
Definition: lo-mappers.h:37
#define DASRT_ABORT
Definition: dasrt.cc:190

Definition at line 201 of file dasrt.cc.

Referenced by Fdasrt().

Function Documentation

static ColumnVector dasrt_user_cf ( const ColumnVector x,
double  t 
)
static
static ColumnVector dasrt_user_f ( const ColumnVector x,
const ColumnVector xdot,
double  t,
octave_idx_type  
)
static
static Matrix dasrt_user_j ( const ColumnVector x,
const ColumnVector xdot,
double  t,
double  cj 
)
static
OCTAVE_EXPORT octave_value_list Fdasrt ( const octave_value_list args,
int  nargout 
)

Variable Documentation

int call_depth = 0
static

Definition at line 58 of file dasrt.cc.

octave_function* dasrt_cf
static

Definition at line 50 of file dasrt.cc.

octave_function* dasrt_f
static

Definition at line 48 of file dasrt.cc.

octave_function* dasrt_j
static

Definition at line 49 of file dasrt.cc.

bool warned_cf_imaginary = false
static

Definition at line 55 of file dasrt.cc.

Referenced by dasrt_user_cf(), and Fdasrt().

bool warned_fcn_imaginary = false
static

Definition at line 53 of file dasrt.cc.

Referenced by dasrt_user_f(), and Fdasrt().

bool warned_jac_imaginary = false
static

Definition at line 54 of file dasrt.cc.

Referenced by dasrt_user_j(), and Fdasrt().