Go to the source code of this file.
Variables | |
static const char | FileOpenError [] = "Could not open file" |
static const char | UnsupportedFitsFormat [] = "Only 1D or 2D images are supported" |
static const char | DGESVFailed [] = "dgesv_ fails" |
static const char | DGETRFFailed [] = "Error computing LU factorization of matrix: dgetrf_ failed" |
static const char | DGETRIFailed [] = "Error computing inverse of matrix: dgetri_ failed" |
static const char | DGETRSFailed [] = "Error solving system of linear equations: dgetrs_ failed" |
static const char | DPOTRFFailed [] = "Error computing Cholesky factorization of matrix: dpotrf_ failed" |
static const char | LinearEqSolveExpectedColVector [] = "not a column vector as expected" |
static const char | ToVectorFailes [] = "Unable to convert fits2d to vector because both dimensions are greater than 1. " |
static const char | DivByZero [] = "Operation causes division by zero. " |
static const char | LinearEqSolveFirst [] = "LUDecomp is Null. Must call linearEqSolve prior to LinearEqSolveNRHS to calculate LUDecomp" |
static const char | RealMatrixExpected [] = "Expected a Real matrix" |
static const char | ComplexMatrixExpected [] = "Expected a Complex matrix" |
static const char | FftwShiftNoComplexData [] = "fftwShift not implemented for complex data" |
static const char | matrixMultipyMMIncompatibleMatrixSizes [] = "Columns of Matrix A are not compatible with Rows of Matrix B" |
static const char | matrixMultipyMMUnknownMatrixTypes [] = "unknown combination of matrix types" |
static const char | MatrixAPlusLambdaBNotImplCombination [] = "code not implemented to handle COMPLEX, REAL variation" |
static const char | MatrixAPlusLambdaBMatricesNotSameSize [] = "matrices are not compatible; they must all be the same size" |
static const char | MatrixNorm2NotImpl [] = "not implemented for Real Matrices" |
static const char | MatrixConvertToRealNotComplex [] = "matrix is not complex" |
static const char | MatrixConvertToComplexNotReal [] = "matrix is not real" |
static const char | MatrixComplexNotImpl [] = "not implemented for Complex Matrices" |
static const char | MatrixConvertToRealConvFail [] = "conversion failed" |
static const char | MatrixMatrixToVectorComplexNotImpl [] = "Conversion from COMPLEX matrix to complex vector not implemented" |
static const char | MatrixMatrixToVectorNoRowOrColVec [] = "Cannot convert matrix to vector; matrix is neither a column nor row vector" |
static const char | MatrixUnrecognizedOperator [] = "Unrecognized operator. Expected 'N', 'C', or 'T'." |
static const char | MapDepthMatrixReadUnexpectedDim [] = "Unexpected dimensions on fits file" |
static const char | MapDepthMatrixBadInsert [] = "cannot insert the 2d matrix into 4d matrix" |
static const char | MapDepthMatrixNotEnoughFilenames [] = "Not enough filenames to print MapDepthMatrix" |
static const char | ReadWriteFitsBadZDimension [] = "The specified plane is outside the range for Z-Dimension" |
static const char | ReadWriteFitsBadTDimension [] = "The specified plane is outside the range for T-Dimension" |
static const char | WriteFitsFileNotOpen [] = "Must open FITS file before writing to it" |
static const char | WriteFitsHeaderError [] = "Error writing header parameters to fits file" |
static const char | ReadFitsFileBadDimensions [] = "Expected 1D, 2D or 3D image; instead, opened FITS file with dimensions" |
static const char | MatrixNoConjugateReal [] = "cannot take conjugate of Real matrix" |
static const char | MatrixIncompatibleSizes [] = "Incompatible matrix sizes" |
static const char | MatrixStarMultiplySameSize [] = "Operands must have same number of rows and columns" |
static const char | MatrixStarMultiplySameType [] = "no mixed matrix types" |
static const char | MatrixBiggerDim [] = "New dimensions must be bigger than current matrix dimensions" |
static const char | MatrixEmbedEvenDim [] = "must have Nx == Ny and even" |
static const char | SuperYAvgKNoiseExceed [] = "Cannot pack super vectorY, Averaging Kernel and Noise exceed the size of superY" |
static const char | SuperYAvgKIToReal [] = "Could not convert averaging kernel from complex to real" |
static const char | SuperYNoiseIToReal [] = "Could not convert noise from complex to real" |
static const char | SuperYCannotConvertCToI [] = "Cannot convert from complex to real; imaginary part is not zero at element %1d: %f + %fi\n" |
static const char | SuperYRDataNull [] = "rData is NULL" |
static const char | SuperYCDataNull [] = "cData is NULL" |
static const char | MaskReadUnexpectedDim [] = "Unexpected dimensions on fits file" |
static const char | FftwSystemWisdomImport [] = "Error importing system wisdom" |
static const char | FftwWisdomImport [] = "Unable to open wisdom file" |
static const char | FftwWisdomRead [] = "Unable to read wisdom file" |
static const char | FftwWisdomWrite [] = "Unable to open wisdom file for writing" |
static const char | FftwForwardPlanNull [] = "Unable to generate forward plan using wisdom" |
static const char | FftwReversePlanNull [] = "Unable to generate reverse plan using wisdom" |
const char ComplexMatrixExpected[] = "Expected a Complex matrix" [static] |
const char DGESVFailed[] = "dgesv_ fails" [static] |
const char DGETRFFailed[] = "Error computing LU factorization of matrix: dgetrf_ failed" [static] |
const char DGETRIFailed[] = "Error computing inverse of matrix: dgetri_ failed" [static] |
const char DGETRSFailed[] = "Error solving system of linear equations: dgetrs_ failed" [static] |
const char DivByZero[] = "Operation causes division by zero. " [static] |
const char DPOTRFFailed[] = "Error computing Cholesky factorization of matrix: dpotrf_ failed" [static] |
const char FftwForwardPlanNull[] = "Unable to generate forward plan using wisdom" [static] |
const char FftwReversePlanNull[] = "Unable to generate reverse plan using wisdom" [static] |
const char FftwShiftNoComplexData[] = "fftwShift not implemented for complex data" [static] |
const char FftwSystemWisdomImport[] = "Error importing system wisdom" [static] |
const char FftwWisdomImport[] = "Unable to open wisdom file" [static] |
const char FftwWisdomRead[] = "Unable to read wisdom file" [static] |
const char FftwWisdomWrite[] = "Unable to open wisdom file for writing" [static] |
const char FileOpenError[] = "Could not open file" [static] |
const char LinearEqSolveExpectedColVector[] = "not a column vector as expected" [static] |
const char LinearEqSolveFirst[] = "LUDecomp is Null. Must call linearEqSolve prior to LinearEqSolveNRHS to calculate LUDecomp" [static] |
const char MapDepthMatrixBadInsert[] = "cannot insert the 2d matrix into 4d matrix" [static] |
const char MapDepthMatrixNotEnoughFilenames[] = "Not enough filenames to print MapDepthMatrix" [static] |
const char MapDepthMatrixReadUnexpectedDim[] = "Unexpected dimensions on fits file" [static] |
const char MaskReadUnexpectedDim[] = "Unexpected dimensions on fits file" [static] |
const char MatrixAPlusLambdaBMatricesNotSameSize[] = "matrices are not compatible; they must all be the same size" [static] |
const char MatrixAPlusLambdaBNotImplCombination[] = "code not implemented to handle COMPLEX, REAL variation" [static] |
const char MatrixBiggerDim[] = "New dimensions must be bigger than current matrix dimensions" [static] |
const char MatrixComplexNotImpl[] = "not implemented for Complex Matrices" [static] |
const char MatrixConvertToComplexNotReal[] = "matrix is not real" [static] |
const char MatrixConvertToRealConvFail[] = "conversion failed" [static] |
const char MatrixConvertToRealNotComplex[] = "matrix is not complex" [static] |
const char MatrixEmbedEvenDim[] = "must have Nx == Ny and even" [static] |
const char MatrixIncompatibleSizes[] = "Incompatible matrix sizes" [static] |
const char MatrixMatrixToVectorComplexNotImpl[] = "Conversion from COMPLEX matrix to complex vector not implemented" [static] |
const char MatrixMatrixToVectorNoRowOrColVec[] = "Cannot convert matrix to vector; matrix is neither a column nor row vector" [static] |
const char matrixMultipyMMIncompatibleMatrixSizes[] = "Columns of Matrix A are not compatible with Rows of Matrix B" [static] |
const char matrixMultipyMMUnknownMatrixTypes[] = "unknown combination of matrix types" [static] |
const char MatrixNoConjugateReal[] = "cannot take conjugate of Real matrix" [static] |
const char MatrixNorm2NotImpl[] = "not implemented for Real Matrices" [static] |
const char MatrixStarMultiplySameSize[] = "Operands must have same number of rows and columns" [static] |
const char MatrixStarMultiplySameType[] = "no mixed matrix types" [static] |
const char MatrixUnrecognizedOperator[] = "Unrecognized operator. Expected 'N', 'C', or 'T'." [static] |
const char ReadFitsFileBadDimensions[] = "Expected 1D, 2D or 3D image; instead, opened FITS file with dimensions" [static] |
const char ReadWriteFitsBadTDimension[] = "The specified plane is outside the range for T-Dimension" [static] |
const char ReadWriteFitsBadZDimension[] = "The specified plane is outside the range for Z-Dimension" [static] |
const char RealMatrixExpected[] = "Expected a Real matrix" [static] |
const char SuperYAvgKIToReal[] = "Could not convert averaging kernel from complex to real" [static] |
const char SuperYAvgKNoiseExceed[] = "Cannot pack super vectorY, Averaging Kernel and Noise exceed the size of superY" [static] |
const char SuperYCannotConvertCToI[] = "Cannot convert from complex to real; imaginary part is not zero at element %1d: %f + %fi\n" [static] |
const char SuperYCDataNull[] = "cData is NULL" [static] |
const char SuperYNoiseIToReal[] = "Could not convert noise from complex to real" [static] |
const char SuperYRDataNull[] = "rData is NULL" [static] |
const char ToVectorFailes[] = "Unable to convert fits2d to vector because both dimensions are greater than 1. " [static] |
const char UnsupportedFitsFormat[] = "Only 1D or 2D images are supported" [static] |
const char WriteFitsFileNotOpen[] = "Must open FITS file before writing to it" [static] |
const char WriteFitsHeaderError[] = "Error writing header parameters to fits file" [static] |