IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3075


Ignore:
Timestamp:
Jan 24, 2005, 12:02:16 PM (21 years ago)
Author:
Paul Price
Message:

In psMatrixLUD, changed psVector *perm to psVector perm to allow the
function to allocate the vector (bug 269).

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

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

    r3070 r3075  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.58 2005-01-22 01:57:42 eugene Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.59 2005-01-24 22:02:10 price Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    435435\item Added section of Database Functions
    436436\end{itemize}
     437
     438\subsection{Changes from Revision 11 (21 January 2005) to Revision 12 (Present)}
     439
     440\begin{itemize}
     441\item In \code{psMatrixLUD}, changed \code{psVector *perm} to
     442  \code{psVector **perm} to allow the function to allocate the vector
     443  (bug 269).
     444\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r3070 r3075  
    1 %%% $Id: psLibSDRS.tex,v 1.169 2005-01-22 01:57:42 eugene Exp $
     1%%% $Id: psLibSDRS.tex,v 1.170 2005-01-24 22:02:16 price Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    31213121
    31223122\begin{verbatim}
    3123 psImage *psMatrixLUD(psImage *out, psVector *perm, const psImage *in);
     3123psImage *psMatrixLUD(psImage *out, psVector **perm, const psImage *in);
    31243124psVector *psMatrixLUSolve(psVector *out, const psImage *LU, const psVector *RHS, const psVector *perm);
    31253125\end{verbatim}
     
    31363136This vector shall be created by \code{psMatrixLUD}, and the user need
    31373137only pass this to \code{psMatrixLUSolve} before destroying it in the
    3138 standard manner.
     3138standard manner.  In order to avoid memory leaks, \code{perm} must be
     3139\code{NULL} on calling \code{psMatrixLUD}.
    31393140
    31403141\begin{verbatim}
Note: See TracChangeset for help on using the changeset viewer.