[GRASS-SVN] r53174 - grass/branches/develbranch_6/vector/lidar/lidarlib

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 12 12:03:34 PDT 2012


Author: neteler
Date: 2012-09-12 12:03:34 -0700 (Wed, 12 Sep 2012)
New Revision: 53174

Modified:
   grass/branches/develbranch_6/vector/lidar/lidarlib/TcholBand.c
Log:
fix typos in comments

Modified: grass/branches/develbranch_6/vector/lidar/lidarlib/TcholBand.c
===================================================================
--- grass/branches/develbranch_6/vector/lidar/lidarlib/TcholBand.c	2012-09-12 18:52:29 UTC (rev 53173)
+++ grass/branches/develbranch_6/vector/lidar/lidarlib/TcholBand.c	2012-09-12 19:03:34 UTC (rev 53174)
@@ -5,7 +5,7 @@
 #include <grass/PolimiFunct.h>
 
 /*--------------------------------------------------------------------------------------*/
-/* Tcholetsky decomposition -> T= Lower Triangular Matrix */
+/* Cholesky decomposition -> T= Lower Triangular Matrix */
 
 void tcholDec(double **N, double **T, int n, int BW)
 {
@@ -38,7 +38,7 @@
 }
 
 /*--------------------------------------------------------------------------------------*/
-/* Tcholetsky matrix solution */
+/* Cholesky matrix solution */
 
 void tcholSolve(double **N, double *TN, double *parVect, int n, int BW)
 {
@@ -83,7 +83,7 @@
 
 
 /*--------------------------------------------------------------------------------------*/
-/* Soluzione con Tcholetsky -> la matrice T triangolare viene passata come paramtero e 
+/* Soluzione con Cholesky -> la matrice T triangolare viene passata come paramtero e 
    non calcolata internamente alla procedura -> T = dmatrix (0, n-1, 0, BW-1) */
 
 void tcholSolve2(double **N, double *TN, double **T, double *parVect, int n,
@@ -119,7 +119,7 @@
 }
 
 /*--------------------------------------------------------------------------------------*/
-/* Tcholetsky matrix invertion */
+/* Cholesky matrix inversion */
 
 void tcholInv(double **N, double *invNdiag, int n, int BW)
 {
@@ -165,7 +165,7 @@
 }
 
 /*--------------------------------------------------------------------------------------*/
-/* Tcholetsky matrix solution and invertion */
+/* Cholesky matrix solution and inversion */
 
 void tcholSolveInv(double **N, double *TN, double *invNdiag, double *parVect,
 		   int n, int BW)



More information about the grass-commit mailing list