[GRASS-SVN] r41103 - grass-addons/imagery/i.spec.unmix

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Feb 18 15:43:39 EST 2010


Author: neteler
Date: 2010-02-18 15:43:38 -0500 (Thu, 18 Feb 2010)
New Revision: 41103

Modified:
   grass-addons/imagery/i.spec.unmix/main.c
Log:
fix

Modified: grass-addons/imagery/i.spec.unmix/main.c
===================================================================
--- grass-addons/imagery/i.spec.unmix/main.c	2010-02-18 20:41:48 UTC (rev 41102)
+++ grass-addons/imagery/i.spec.unmix/main.c	2010-02-18 20:43:38 UTC (rev 41103)
@@ -228,7 +228,7 @@
 
    for (i=0; i < A->rows ; i++)   /* copy rowwise */
      for (j=0; j < A->cols; j++)  /* copy colwise */
-          G_matrix_get_element(A_tilde, [i][j])= A->G_matrix_get_element[i][j];
+          G_matrix_get_element(A_tilde, i, j)= A->G_matrix_get_element[i][j];
 
    /* fill last row with 1 elements */
    for (j=0; j < A->cols ; j++)



More information about the grass-commit mailing list