Home
last modified time | relevance | path

Searched refs:CSG_Matrix (Results 1 – 25 of 86) sorted by relevance

1234

/dports/math/saga/saga-8.1.3/saga-gis/src/saga_core/saga_api/
H A Dmat_matrix.cpp804 CSG_Matrix::CSG_Matrix(void) in CSG_Matrix() function in CSG_Matrix
810 CSG_Matrix::CSG_Matrix(const CSG_Matrix &Matrix) in CSG_Matrix() function in CSG_Matrix
899 CSG_Matrix::~CSG_Matrix(void) in ~CSG_Matrix()
1529 CSG_Matrix CSG_Matrix::Multiply(const CSG_Matrix &Matrix) const in Multiply()
1573 CSG_Matrix & CSG_Matrix::operator = (const CSG_Matrix &Matrix) in operator =()
1588 CSG_Matrix & CSG_Matrix::operator += (const CSG_Matrix &Matrix) in operator +=()
1603 CSG_Matrix & CSG_Matrix::operator -= (const CSG_Matrix &Matrix) in operator -=()
1618 CSG_Matrix & CSG_Matrix::operator *= (const CSG_Matrix &Matrix) in operator *=()
1635 CSG_Matrix CSG_Matrix::operator + (const CSG_Matrix &Matrix) const in operator +()
1654 CSG_Matrix CSG_Matrix::operator - (const CSG_Matrix &Matrix) const in operator -()
[all …]
H A Dmat_tools.h459 CSG_Matrix(void);
462 CSG_Matrix (const CSG_Matrix &Matrix);
525 CSG_Matrix Multiply (const CSG_Matrix &Matrix) const;
529 CSG_Matrix & operator = (const CSG_Matrix &Matrix);
531 CSG_Matrix & operator += (const CSG_Matrix &Matrix);
533 CSG_Matrix & operator -= (const CSG_Matrix &Matrix);
535 CSG_Matrix & operator *= (const CSG_Matrix &Matrix);
537 CSG_Matrix operator + (const CSG_Matrix &Matrix) const;
539 CSG_Matrix operator - (const CSG_Matrix &Matrix) const;
542 CSG_Matrix operator * (const CSG_Matrix &Matrix) const;
[all …]
H A Dmat_regression_weighted.cpp133 …lculate(const CSG_Vector &Weights, const CSG_Vector &Dependents, const CSG_Matrix &Predictors, boo… in Calculate()
173 CSG_Matrix YtW(nSamples, 1 + nPredictors); in Calculate()
275 CSG_Vector CSG_Regression_Weighted::_Log_Get_Beta(const CSG_Matrix &X, const CSG_Vector &y, const C… in _Log_Get_Beta()
317 CSG_Vector CSG_Regression_Weighted::_Log_Get_Beta(const CSG_Vector &b, const CSG_Matrix &X, const C… in _Log_Get_Beta()
319 CSG_Matrix Xt = X.Get_Transpose() ; // X' in _Log_Get_Beta()
320 CSG_Matrix M = Xt * _Log_Get_Xwp(p, X, w); // X'* w * V(t-1) * X in _Log_Get_Beta()
321 CSG_Matrix N = M.Get_Inverse() * Xt ; // inv(X'* w * V(t-1) * X) * X' in _Log_Get_Beta()
333 CSG_Matrix CSG_Regression_Weighted::_Log_Get_Xwp(const CSG_Vector &p, const CSG_Matrix &X, const CS… in _Log_Get_Xwp()
335 CSG_Matrix Xwp; in _Log_Get_Xwp()
368 CSG_Vector CSG_Regression_Weighted::_Log_Get_Props(const CSG_Matrix &X, const CSG_Vector &b) in _Log_Get_Props()
H A Dmat_regression_multiple.cpp242 bool CSG_Regression_Multiple::Set_Data(const CSG_Matrix &Samples, CSG_Strings *pNames) in Set_Data()
315 bool CSG_Regression_Multiple::Get_Model(const CSG_Matrix &Samples, CSG_Strings *pNames) in Get_Model()
429 CSG_Matrix Samples(m_Samples_Model); in Get_CrossValidation()
460 CSG_Matrix Samples(m_Samples_Model), Validation; in Get_CrossValidation()
614 bool CSG_Regression_Multiple::_Get_Regression(const CSG_Matrix &Samples) in _Get_Regression()
623 CSG_Matrix X, Xt, C; in _Get_Regression()
693 CSG_Matrix P = SG_Get_Correlation_Matrix(Samples, true).Get_Inverse(); // get partial correlation in _Get_Regression()
733 int CSG_Regression_Multiple::_Get_Step_In(CSG_Matrix &X, double P_in, double &R2, const CSG_Matrix in _Get_Step_In()
778 int CSG_Regression_Multiple::_Get_Step_Out(CSG_Matrix &X, double P_out, double &R2) in _Get_Step_Out()
795 CSG_Matrix X_reduced(X); in _Get_Step_Out()
[all …]
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/statistics/statistics_kriging/
H A Dvariogram_dialog.h87 …static bool Calculate (const CSG_Matrix &Points, CSG_Table *pVariogram, int nClasses = 25, doub…
89 static bool Get_Extent (const CSG_Matrix &Points, CSG_Matrix &Extent);
91 static double Get_Diagonal (const CSG_Matrix &Points);
93 static double Get_Lag_Distance (const CSG_Matrix &Points, int Method, int nSkip = 1);
110 bool Execute (const CSG_Matrix &Points, CSG_Table *pVariogram, CSG_Trend *pModel);
133 const CSG_Matrix *m_pPoints;
H A Dkriging_base.h78 CSG_Matrix m_Points, m_W;
92 bool Get_Points (double x, double y, CSG_Matrix &Points);
94 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W) = 0;
H A Dkriging3d_base.h80 CSG_Matrix m_Points, m_W;
94 bool Get_Points (double x, double y, double z, CSG_Matrix &Points);
96 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W) = 0;
H A Dkriging_simple.cpp78 bool CKriging_Simple::Get_Weights(const CSG_Matrix &Points, CSG_Matrix &W) in Get_Weights()
108 CSG_Matrix __Points, __W; double **P, **W; int i, n = 0; in Get_Value()
H A Dkriging_ordinary.cpp80 bool CKriging_Ordinary::Get_Weights(const CSG_Matrix &Points, CSG_Matrix &W) in Get_Weights()
113 CSG_Matrix __Points, __W; double **P, **W; int i, n = 0; in Get_Value()
H A Dkriging3d_simple.cpp80 bool CKriging3D_Simple::Get_Weights(const CSG_Matrix &Points, CSG_Matrix &W) in Get_Weights()
110 CSG_Matrix __Points, __W; double **P, **W; int i, n = 0; in Get_Value()
H A Dkriging3d_ordinary.cpp80 bool CKriging3D_Ordinary::Get_Weights(const CSG_Matrix &Points, CSG_Matrix &W) in Get_Weights()
113 CSG_Matrix __Points, __W; double **P, **W; int i, n = 0; in Get_Value()
H A Dkriging_ordinary.h79 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W);
H A Dkriging_simple.h77 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W);
H A Dkriging3d_ordinary.h77 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W);
H A Dkriging3d_simple.h77 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W);
H A Dkriging_universal.h81 virtual bool Get_Weights (const CSG_Matrix &Points, CSG_Matrix &W);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/statistics/statistics_grid/
H A Dgrid_pca.h87 bool Get_Matrix (CSG_Matrix &Matrix);
88 bool Get_Eigen_Reduction (CSG_Matrix &Eigen_Vectors);
91 void Print_Eigen_Vectors (CSG_Matrix &Eigen_Vectors);
93 bool Set_Eigen_Vectors (CSG_Matrix &Eigen_Vectors);
94 bool Get_Eigen_Vectors (CSG_Matrix &Eigen_Vectors);
96 bool Get_Components (const CSG_Matrix &Eigen_Vectors);
H A Dgrid_pca.cpp167 CSG_Matrix Eigen_Vectors; in On_Execute()
231 bool CGrid_PCA::Get_Matrix(CSG_Matrix &Matrix) in Get_Matrix()
301 bool CGrid_PCA::Get_Eigen_Reduction(CSG_Matrix &Eigen_Vectors) in Get_Eigen_Reduction()
303 CSG_Matrix Matrix; in Get_Eigen_Reduction()
314 CSG_Matrix _Eigen_Vectors; in Get_Eigen_Reduction()
380 void CGrid_PCA::Print_Eigen_Vectors(CSG_Matrix &Eigen_Vectors) in Print_Eigen_Vectors()
403 bool CGrid_PCA::Get_Eigen_Vectors(CSG_Matrix &Eigen_Vectors) in Get_Eigen_Vectors()
453 bool CGrid_PCA::Set_Eigen_Vectors(CSG_Matrix &Eigen_Vectors) in Set_Eigen_Vectors()
492 bool CGrid_PCA::Get_Components(const CSG_Matrix &Eigen_Vectors) in Get_Components()
665 CSG_Matrix E(nFeatures, nFeatures); in On_Execute()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/imagery/imagery_vigra/
H A Dvigra_random_forest.h100 bool Get_Training (CSG_Matrix &Data, CSG_Table &Classes);
101 int Get_Training (CSG_Matrix &Data, int ID, CSG_Shape_Polygon *pArea);
133 bool Get_Training (CSG_Matrix &Data);
134 bool Get_Training (CSG_Matrix &Data, int x, int y, int ID);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/imagery/imagery_opencv/
H A Dopencv_svd.cpp121 CSG_Matrix u(cv_pU->rows, cv_pU->cols, cv_pU->data.db); in On_Execute()
122 CSG_Matrix v(cv_pV->rows, cv_pV->cols, cv_pV->data.db); in On_Execute()
123 CSG_Matrix w(cv_pW->rows, cv_pW->cols, cv_pW->data.db); in On_Execute()
124 CSG_Matrix svd(Get_NY(), Get_NX()); in On_Execute()
H A Dopencv_ml.h128 virtual Ptr<TrainData> Get_Training (const CSG_Matrix &Data);
149 bool _Get_Training (CSG_Matrix &Data);
150 …bool _Get_Training (CSG_Matrix &Data, CSG_Table_Record *pClass, CSG_Shape_Polygon *pPolygon…
302 virtual Ptr<TrainData> Get_Training (const CSG_Matrix &Data);
327 virtual Ptr<TrainData> Get_Training (const CSG_Matrix &Data);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/imagery/imagery_photogrammetry/
H A DResection.cpp271 CSG_Matrix invN; in On_Execute()
281 CSG_Matrix R = methods::calcRotnMatrix(rotns); // Rotation Matrix from approximate values in On_Execute()
282 CSG_Matrix E(3,3); // [w1;w2;w3] = E * [dw;dk;da] in On_Execute()
292 CSG_Matrix N(n,n); // Transpose(Design Matrix) * I * Design Matrix in On_Execute()
342 CSG_Matrix L(3,2); // CSG_Matrix takes columns first and rows second in On_Execute()
343 CSG_Matrix V(3,3); in On_Execute()
344 CSG_Matrix LR(3,2); in On_Execute()
345 CSG_Matrix LVE(3,2); in On_Execute()
364 CSG_Matrix design(n,2); in On_Execute()
400 CSG_Matrix eigenVecs(n,n); in On_Execute()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/imagery/imagery_tools/
H A Dtextural_features.h92 bool Get_Matrices (int x, int y, int d, CSG_Matrix P[4]);
93 bool Get_Features (CSG_Vector &Features, const CSG_Matrix &P);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/table/table_calculus/
H A Dtable_pca.h90 bool Get_Matrix (CSG_Matrix &Matrix);
92 bool Get_Components (CSG_Matrix &Eigen_Vectors, CSG_Vector &Eigen_Values);
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/terrain_analysis/ta_morphometry/
H A Dparam_scale.h92 CSG_Matrix m_Weights;
101 bool Get_Normal (CSG_Matrix &Normal);

1234