Changeset 4064 for trunk/doc/pslib/psLibSDRS.tex
- Timestamp:
- May 31, 2005, 6:10:25 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/doc/pslib/psLibSDRS.tex (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/psLibSDRS.tex
r4062 r4064 1 %%% $Id: psLibSDRS.tex,v 1.24 0 2005-06-01 02:09:16jhoblitt Exp $1 %%% $Id: psLibSDRS.tex,v 1.241 2005-06-01 04:10:25 jhoblitt Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 1461 1461 typedef struct psImage { 1462 1462 psType type; ///< image data type and dimension 1463 const int ncols, nrows; ///< size of image 1464 int col0, row0; ///< offset of image (relative to parent) 1463 const psU32 numCols; ///< Number of columns in image 1464 const psU32 numRows; ///< Number of rows in image. 1465 const psS32 col0; ///< Column position relative to parent. 1466 const psS32 row0; ///< Row position relative to parent. 1467 1465 1468 union { 1466 1469 psS8 **S8; ///< Pointers to char data … … 1502 1505 psS16, psU8, psU16, psF32, psF64, psC32, psC64}. 1503 1506 1504 \begin{prototype} 1505 psImage *psImageAlloc(psU32 width, psU32 height, psElemType type); 1506 psImage* psImageRecycle(psImage* old, int numCols, int numRows, const psElemType type); 1507 \end{prototype} 1508 1509 \code{psImageAlloc} shall create an image of a specified \code{width}, \code{height}, and data 1507 \begin{verbatim} 1508 psImage *psImageAlloc(psU32 numCols, psU32 numRows, psElemType type); 1509 \end{verbatim} 1510 Create an image of a specified \code{numCols}, \code{numRows}, and data 1510 1511 \code{type}. This function must allow any of the valid image data 1511 1512 types and not restrict to the valid FITS BITPIX types. The image … … 1592 1593 reducing the total number of elements of \code{array} as needed. 1593 1594 Returns \code{TRUE} if any elements were removed, otherwise 1595 const int x0, y0; ///< data region relative to parent 1594 1596 \code{FALSE}. 1595 1597 … … 5915 5917 5916 5918 \begin{prototype} 5917 float psGetAirmass(const psSphere *coord, psTime *lst, float height);5919 float psGetAirmass(const psSphere *coord, psTime *lst, float altitude); 5918 5920 \end{prototype} 5919 5921 which returns the airmass for a given position and local sidereal time
Note:
See TracChangeset
for help on using the changeset viewer.
