Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef RLSERRORMESSAGES_H_
00009 #define RLSERRORMESSAGES_H_
00010
00011 const static char NotEnoughInputParms[] = "Not enough input parameters in input file";
00012 const static char MatrixSquare[] = "Matrix must be square";
00013 const static char DnNotEqualCInRow[] = "Data input matrix, d, must have same dimension as noise Covariance, CI";
00014 const static char MnRowNotEqualCInRow[] = "Kernel matrix, M, must have same number of rows as noise Covariance, CI";
00015 const static char MnColNotEqualRnRow[] = "Kernel matrix, M, columns must equal rows of Regularization matrix, R";
00016 const static char KernelCovXYSame[] = "First two dimensions of Kernel and Noise Covariance must be the same";
00017 const static char ZeroLambda[] = "Performing inversion with lambda = 0.0; zero is not considered a valid value for lambda";
00018
00019 #endif