IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 28, 2004, 1:27:37 PM (22 years ago)
Author:
gusciora
Message:

Chebyshev polynomila fitting routines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psConstants.h

    r1907 r1921  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2004-09-27 23:41:42 $
     8 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2004-09-28 23:27:37 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7373printf("\n"); \
    7474
     75#define PS_VECTOR_F64_TO_F32(X64, X32) \
     76psVector *X32 = psVectorAlloc(X64->n, PS_TYPE_F32); \
     77for (int i=0;i<X64->n;i++) { \
     78    X32->data.F32[i] = X64->data.F64[i]; \
     79} \
     80
    7581#define PS_MAX(A, B) \
    7682(A > B) ? A : B \
Note: See TracChangeset for help on using the changeset viewer.