IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 3, 2006, 12:01:09 PM (20 years ago)
Author:
eugene
Message:

converted fits_ to gfits_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libfits/matrix/F_multiply_M.c

    r7039 r7054  
    33
    44/******************* fits multiply matrix ***********************************/
    5 int fits_multiply_matrix (Matrix *M1, Matrix *M2, Matrix *M3) {
     5int gfits_multiply_matrix (Matrix *M1, Matrix *M2, Matrix *M3) {
    66
    77  int i,j;
     
    1414  for (i = 0; i < M1[0].Naxis[0]; i++) {
    1515    for (j = 0; j < M1[0].Naxis[1]; j++) {
    16       value = fits_get_matrix_value (M1, i, j);
    17       value *= fits_get_matrix_value (M2, i, j);
    18       fits_set_matrix_value (M3, i, j, value);
     16      value = gfits_get_matrix_value (M1, i, j);
     17      value *= gfits_get_matrix_value (M2, i, j);
     18      gfits_set_matrix_value (M3, i, j, value);
    1919    }
    2020  }
Note: See TracChangeset for help on using the changeset viewer.