IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2737


Ignore:
Timestamp:
Dec 16, 2004, 12:10:48 PM (22 years ago)
Author:
Paul Price
Message:

Updated psSpline1D to use a vector for the knots, and specified types.

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/ChangeLogSDRS.tex

    r2712 r2737  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.51 2004-12-14 19:52:24 eugene Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.52 2004-12-16 22:10:43 price Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    403403\item added header entry to psFitsWriteTable
    404404\item added psFitsUpdateTable
    405 \end{itemize}
     405\item Updated \code{psSpline1D} to use a vector for the \code{knots}, and specified types.
     406\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r2712 r2737  
    1 %%% $Id: psLibSDRS.tex,v 1.159 2004-12-14 19:52:24 eugene Exp $
     1%%% $Id: psLibSDRS.tex,v 1.160 2004-12-16 22:10:48 price Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    22712271    int n;                              ///< Number of spline pieces
    22722272    psPolynomial1D **spline;            ///< Array of n pointers to splines
    2273     float *knots;                       ///< The boundaries between each spline piece.  Size is n+1.
     2273    psVector *knots;                    ///< The boundaries between each spline piece.  Size is n+1.
    22742274} psSpline1D;
    22752275\end{verbatim}
     
    22822282order polynomial (the type of polynomial is left to the
    22832283implementation).  The \code{knots} member specifies the boundaries
    2284 between each spline piece (including the two ends).
     2284between each spline piece (including the two ends).  The \code{knots}
     2285vector may be of type U32, F32 or F64.
    22852286
    22862287Of course, we require the appropriate constructors and destructor:
Note: See TracChangeset for help on using the changeset viewer.