10-10-2007 08:48 AM
10-11-2007 12:06 PM
10-11-2007 01:14 PM
10-11-2007 06:41 PM
10-12-2007 08:27 AM
ReadDataIntoArray() reads limits for different variables from .xls file. Some variables have limits some don’t. I need to detect which one has no limit and don’t do the calculations on it. I also need to replace the invalid numbers with std::numeric_limits<real64>::quiet_NaN() in the matrix so that
The output should like this:
Meassurement MeasValue LowerLimit Upperlimit
Frequency(Hz) 1.5 1.0 2.0
VSWR 0.1
Thanks.
Kathy
10-15-2007 06:22 PM
10-15-2007 07:10 PM
if
( CellValue > 0 && CellValue < 3.0e-315){
CellValue = std::numeric_limits<real64>::quiet_NaN();
}
One thing I am not sure is that "3.0e-315" is good for comparing in different systems? I am use Windows XP and our client may have Windows2000 server.
10-16-2007 05:37 PM