RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
RDNumeric::SymmMatrix< TYPE > Class Template Reference

A symmetric matrix class. More...

#include <SymmMatrix.h>

Public Types

typedef boost::shared_array< TYPE > DATA_SPTR
 

Public Member Functions

 SymmMatrix (unsigned int N)
 
 SymmMatrix (unsigned int N, TYPE val)
 
 SymmMatrix (unsigned int N, DATA_SPTR data)
 
 SymmMatrix (const SymmMatrix< TYPE > &other)
 
 ~SymmMatrix ()=default
 
unsigned int numRows () const
 returns the number of rows
 
unsigned int numCols () const
 returns the number of columns
 
unsigned int getDataSize () const
 
void setToIdentity ()
 
TYPE getVal (unsigned int i, unsigned int j) const
 
void setVal (unsigned int i, unsigned int j, TYPE val)
 
void getRow (unsigned int i, Vector< TYPE > &row)
 
void getCol (unsigned int i, Vector< TYPE > &col)
 
TYPE * getData ()
 returns a pointer to our data array
 
const TYPE * getData () const
 returns a const pointer to our data array
 
SymmMatrix< TYPE > & operator*= (TYPE scale)
 
SymmMatrix< TYPE > & operator/= (TYPE scale)
 
SymmMatrix< TYPE > & operator+= (const SymmMatrix< TYPE > &other)
 
SymmMatrix< TYPE > & operator-= (const SymmMatrix< TYPE > &other)
 
SymmMatrix< TYPE > & operator*= (const SymmMatrix< TYPE > &B)
 in-place matrix multiplication
 
SymmMatrix< TYPE > & transpose (SymmMatrix< TYPE > &transpose) const
 
SymmMatrix< TYPE > & transposeInplace ()
 

Protected Member Functions

 SymmMatrix ()
 

Protected Attributes

unsigned int d_size {0}
 
unsigned int d_dataSize {0}
 
DATA_SPTR d_data
 

Detailed Description

template<class TYPE>
class RDNumeric::SymmMatrix< TYPE >

A symmetric matrix class.

The data is stored as the lower triangle, so A[i,j] = data[i*(i+1) + j] when i >= j and A[i,j] = data[j*(j+1) + i] when i < j

Definition at line 30 of file SymmMatrix.h.

Member Typedef Documentation

◆ DATA_SPTR

template<class TYPE >
typedef boost::shared_array<TYPE> RDNumeric::SymmMatrix< TYPE >::DATA_SPTR

Definition at line 32 of file SymmMatrix.h.

Constructor & Destructor Documentation

◆ SymmMatrix() [1/5]

template<class TYPE >
RDNumeric::SymmMatrix< TYPE >::SymmMatrix ( unsigned int  N)
inlineexplicit

◆ SymmMatrix() [2/5]

template<class TYPE >
RDNumeric::SymmMatrix< TYPE >::SymmMatrix ( unsigned int  N,
TYPE  val 
)
inline

◆ SymmMatrix() [3/5]

template<class TYPE >
RDNumeric::SymmMatrix< TYPE >::SymmMatrix ( unsigned int  N,
DATA_SPTR  data 
)
inline

Definition at line 50 of file SymmMatrix.h.

References RDNumeric::SymmMatrix< TYPE >::d_data.

◆ SymmMatrix() [4/5]

template<class TYPE >
RDNumeric::SymmMatrix< TYPE >::SymmMatrix ( const SymmMatrix< TYPE > &  other)
inline

◆ ~SymmMatrix()

template<class TYPE >
RDNumeric::SymmMatrix< TYPE >::~SymmMatrix ( )
default

◆ SymmMatrix() [5/5]

template<class TYPE >
RDNumeric::SymmMatrix< TYPE >::SymmMatrix ( )
inlineprotected

Definition at line 236 of file SymmMatrix.h.

Member Function Documentation

◆ getCol()

template<class TYPE >
void RDNumeric::SymmMatrix< TYPE >::getCol ( unsigned int  i,
Vector< TYPE > &  col 
)
inline

◆ getData() [1/2]

◆ getData() [2/2]

template<class TYPE >
const TYPE * RDNumeric::SymmMatrix< TYPE >::getData ( ) const
inline

returns a const pointer to our data array

Definition at line 141 of file SymmMatrix.h.

References RDNumeric::SymmMatrix< TYPE >::d_data.

◆ getDataSize()

template<class TYPE >
unsigned int RDNumeric::SymmMatrix< TYPE >::getDataSize ( ) const
inline

Definition at line 73 of file SymmMatrix.h.

References RDNumeric::SymmMatrix< TYPE >::d_dataSize.

◆ getRow()

template<class TYPE >
void RDNumeric::SymmMatrix< TYPE >::getRow ( unsigned int  i,
Vector< TYPE > &  row 
)
inline

◆ getVal()

template<class TYPE >
TYPE RDNumeric::SymmMatrix< TYPE >::getVal ( unsigned int  i,
unsigned int  j 
) const
inline

◆ numCols()

template<class TYPE >
unsigned int RDNumeric::SymmMatrix< TYPE >::numCols ( ) const
inline

returns the number of columns

Definition at line 71 of file SymmMatrix.h.

References RDNumeric::SymmMatrix< TYPE >::d_size.

Referenced by operator<<().

◆ numRows()

template<class TYPE >
unsigned int RDNumeric::SymmMatrix< TYPE >::numRows ( ) const
inline

◆ operator*=() [1/2]

◆ operator*=() [2/2]

template<class TYPE >
SymmMatrix< TYPE > & RDNumeric::SymmMatrix< TYPE >::operator*= ( TYPE  scale)
inline

◆ operator+=()

◆ operator-=()

◆ operator/=()

template<class TYPE >
SymmMatrix< TYPE > & RDNumeric::SymmMatrix< TYPE >::operator/= ( TYPE  scale)
inline

◆ setToIdentity()

template<class TYPE >
void RDNumeric::SymmMatrix< TYPE >::setToIdentity ( )
inline

◆ setVal()

template<class TYPE >
void RDNumeric::SymmMatrix< TYPE >::setVal ( unsigned int  i,
unsigned int  j,
TYPE  val 
)
inline

◆ transpose()

◆ transposeInplace()

template<class TYPE >
SymmMatrix< TYPE > & RDNumeric::SymmMatrix< TYPE >::transposeInplace ( )
inline

Definition at line 230 of file SymmMatrix.h.

Member Data Documentation

◆ d_data

◆ d_dataSize

◆ d_size


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