DeflationChecker#

class numpy::DeflationChecker#

numpy C++ class.

Example#

#include <numpy/np_ndarray.h>
using namespace numpy;

// Use DeflationChecker
DeflationChecker obj;
// ... operations ...

Type Checking#

Signature

Return Type

Location

Example

bool is_negligible(Tsubdiag, Tdiag1, Tdiag2, Ttolerance)

bool

NP_LINALG.H:3695

Other Methods#

Signature

Return Type

Location

Example

size_t check_convergence(const NDArray<T>&H, size_tstart, size_tend, Ttolerance)

size_t

NP_LINALG.H:3716

void deflate_small_elements(NDArray<T>&H, size_tstart, size_tend, Ttolerance)

void

NP_LINALG.H:3736

size_t find_deflation_point(const NDArray<T>&H, size_tstart, size_tend, Ttolerance)

size_t

NP_LINALG.H:3701