GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
octave::math::qr< T > Class Template Reference

#include "qr.h"

Inheritance diagram for octave::math::qr< T >:
Collaboration diagram for octave::math::qr< T >:

Public Types

typedef T::column_vector_type CV_T
 
typedef T::element_type ELT_T
 
typedef T::row_vector_type RV_T
 
enum  type { std , raw , economy }
 

Public Member Functions

 qr (const qr &a)
 
 qr (const T &a, type qr_type=qr::std)
 
 qr (const T &q, const T &r)
 
 qr (void)
 
virtual ~qr (void)=default
 
void delete_col (const Array< octave_idx_type > &j)
 
void delete_col (octave_idx_type j)
 
void delete_row (octave_idx_type j)
 
type get_type (void) const
 
void init (const T &a, type qr_type)
 
void insert_col (const CV_T &u, octave_idx_type j)
 
void insert_col (const T &u, const Array< octave_idx_type > &j)
 
void insert_row (const RV_T &u, octave_idx_type j)
 
qroperator= (const qr &a)
 
Q (void) const
 
R (void) const
 
bool regular (void) const
 
void shift_cols (octave_idx_type i, octave_idx_type j)
 
void update (const CV_T &u, const CV_T &v)
 
void update (const T &u, const T &v)
 

Protected Member Functions

void form (octave_idx_type n, T &afact, ELT_T *tau, type qr_type)
 

Protected Attributes

q
 
r
 

Detailed Description

template<typename T>
class octave::math::qr< T >

Definition at line 38 of file qr.h.

Member Typedef Documentation

◆ CV_T

template<typename T >
typedef T::column_vector_type octave::math::qr< T >::CV_T

Definition at line 45 of file qr.h.

◆ ELT_T

template<typename T >
typedef T::element_type octave::math::qr< T >::ELT_T

Definition at line 43 of file qr.h.

◆ RV_T

template<typename T >
typedef T::row_vector_type octave::math::qr< T >::RV_T

Definition at line 44 of file qr.h.

Member Enumeration Documentation

◆ type

template<typename T >
enum octave::math::qr::type
Enumerator
std 
raw 
economy 

Definition at line 47 of file qr.h.

Constructor & Destructor Documentation

◆ qr() [1/4]

template<typename T >
octave::math::qr< T >::qr ( void  )
inline

Definition at line 54 of file qr.h.

◆ qr() [2/4]

template<typename T >
octave::math::qr< T >::qr ( const T &  a,
type  qr_type = qr< T >::std 
)
inline

Definition at line 56 of file qr.h.

References qr_type().

◆ qr() [3/4]

template<typename T >
qr< T >::qr ( const T &  q,
const T &  r 
)

Definition at line 58 of file qr.cc.

References octave::math::qr< T >::q, and octave::math::qr< T >::r.

◆ qr() [4/4]

template<typename T >
octave::math::qr< T >::qr ( const qr< T > &  a)
inline

Definition at line 64 of file qr.h.

◆ ~qr()

template<typename T >
virtual octave::math::qr< T >::~qr ( void  )
virtualdefault

Member Function Documentation

◆ delete_col() [1/2]

template<typename T >
void octave::math::qr< T >::delete_col ( const Array< octave_idx_type > &  j)

◆ delete_col() [2/2]

template<typename T >
void octave::math::qr< T >::delete_col ( octave_idx_type  j)

Referenced by Fqrdelete().

◆ delete_row()

template<typename T >
void octave::math::qr< T >::delete_row ( octave_idx_type  j)

Referenced by Fqrdelete().

◆ form()

template<typename T >
void octave::math::qr< T >::form ( octave_idx_type  n,
T &  afact,
ELT_T tau,
type  qr_type 
)
protected

◆ get_type()

template<typename T >
qr< T >::type qr< T >::get_type ( void  ) const

Definition at line 73 of file qr.cc.

References r, and retval.

◆ init()

template<typename T >
void octave::math::qr< T >::init ( const T &  a,
type  qr_type 
)

◆ insert_col() [1/2]

template<typename T >
void octave::math::qr< T >::insert_col ( const CV_T u,
octave_idx_type  j 
)

Referenced by Fqrinsert().

◆ insert_col() [2/2]

template<typename T >
void octave::math::qr< T >::insert_col ( const T &  u,
const Array< octave_idx_type > &  j 
)

◆ insert_row()

template<typename T >
void octave::math::qr< T >::insert_row ( const RV_T u,
octave_idx_type  j 
)

Referenced by Fqrinsert().

◆ operator=()

template<typename T >
qr& octave::math::qr< T >::operator= ( const qr< T > &  a)
inline

Definition at line 66 of file qr.h.

References octave::math::qr< T >::q, octave::math::qr< T >::r, and r.

Referenced by octave::math::qrp< T >::operator=().

◆ Q()

template<typename T >
T octave::math::qr< T >::Q ( void  ) const
inline

Definition at line 79 of file qr.h.

Referenced by Fqr(), Fqrdelete(), Fqrinsert(), Fqrshift(), Fqrupdate(), and Fqz().

◆ R()

template<typename T >
T octave::math::qr< T >::R ( void  ) const
inline

Definition at line 81 of file qr.h.

References r.

Referenced by Fqr(), Fqz(), and get_qr_r().

◆ regular()

template<typename T >
bool qr< T >::regular ( void  ) const

Definition at line 89 of file qr.cc.

References min(), r, and retval.

Referenced by get_qr_r().

◆ shift_cols()

template<typename T >
void octave::math::qr< T >::shift_cols ( octave_idx_type  i,
octave_idx_type  j 
)

Referenced by Fqrshift().

◆ update() [1/2]

template<typename T >
void octave::math::qr< T >::update ( const CV_T u,
const CV_T v 
)

Referenced by Fqrupdate().

◆ update() [2/2]

template<typename T >
void octave::math::qr< T >::update ( const T &  u,
const T &  v 
)

Member Data Documentation

◆ q

template<typename T >
T octave::math::qr< T >::q
protected

Definition at line 109 of file qr.h.

Referenced by octave::math::qr< T >::qr(), and octave::math::qr< T >::operator=().

◆ r

template<typename T >
T octave::math::qr< T >::r
protected

Definition at line 110 of file qr.h.

Referenced by octave::math::qr< T >::qr(), and octave::math::qr< T >::operator=().


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