#include "oct-locbuf.h"
#include "oct-norm.h"
#include "defun.h"
#include "error.h"
#include "builtin-defun-decls.h"
Go to the source code of this file.
Functions | |
OCTAVE_EXPORT octave_value_list | F__ichol0__ (const octave_value_list &args, int) |
OCTAVE_EXPORT octave_value_list | F__icholt__ (const octave_value_list &args, int) |
template<typename octave_matrix_t , typename T , T(*)(T, T) ichol_mult, bool(*)(T) ichol_checkpivot> | |
void | ichol_0 (octave_matrix_t &sm, const std::string michol="off") |
bool | ichol_checkpivot_complex (Complex pivot) |
bool | ichol_checkpivot_real (double pivot) |
Complex | ichol_mult_complex (Complex a, Complex b) |
double | ichol_mult_real (double a, double b) |
template<typename octave_matrix_t , typename T , T(*)(T, T) ichol_mult, bool(*)(T) ichol_checkpivot> | |
void | ichol_t (const octave_matrix_t &sm, octave_matrix_t &L, const T *cols_norm, const T droptol, const std::string michol="off") |
OCTAVE_EXPORT octave_value_list F__ichol0__ | ( | const octave_value_list & | args, |
int | |||
) |
Definition at line 190 of file __ichol__.cc.
References Ftril(), ichol_0(), ichol_checkpivot_complex(), ichol_checkpivot_real(), ichol_mult_complex(), ichol_mult_real(), ovl(), and print_usage().
OCTAVE_EXPORT octave_value_list F__icholt__ | ( | const octave_value_list & | args, |
int | |||
) |
Definition at line 424 of file __ichol__.cc.
References Array< T >::fortran_vec(), Ftril(), ichol_checkpivot_complex(), ichol_checkpivot_real(), ichol_mult_complex(), ichol_mult_real(), ichol_t(), ovl(), print_usage(), and xcolnorms().
void ichol_0 | ( | octave_matrix_t & | sm, |
const std::string | michol = "off" |
||
) |
Definition at line 76 of file __ichol__.cc.
References error(), n, OCTAVE_LOCAL_BUFFER, and r.
Referenced by F__ichol0__().
bool ichol_checkpivot_complex | ( | Complex | pivot | ) |
Definition at line 56 of file __ichol__.cc.
References error().
Referenced by F__ichol0__(), and F__icholt__().
bool ichol_checkpivot_real | ( | double | pivot | ) |
Definition at line 66 of file __ichol__.cc.
References error().
Referenced by F__ichol0__(), and F__icholt__().
Definition at line 39 of file __ichol__.cc.
Referenced by F__ichol0__(), and F__icholt__().
double ichol_mult_real | ( | double | a, |
double | b | ||
) |
Definition at line 51 of file __ichol__.cc.
Referenced by F__ichol0__(), and F__icholt__().
void ichol_t | ( | const octave_matrix_t & | sm, |
octave_matrix_t & | L, | ||
const T * | cols_norm, | ||
const T | droptol, | ||
const std::string | michol = "off" |
||
) |
Definition at line 219 of file __ichol__.cc.
References abs(), error(), Array< T >::fortran_vec(), n, OCTAVE_LOCAL_BUFFER, and Array< T >::resize().
Referenced by F__icholt__().