-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems with radsstat #171
Comments
I can confirm that both these bugs are present. |
I think number 1 is not coming from the change referred to, but rather from the fact that the IEEE fortran standard, nor gfortran, clearly defines what the result of My experiments with gfortran shows that
In most RADS programs, xmin and xmax are first initialised as NaN and then updated using
This would mean that both
But maybe better is to avoid the compiler-dependent implementation and go for:
|
Returning assignment to @leuliett to check implementation as per commits above and close this issue. |
Confirm that both issues are fixed by these commits. |
radsstat has two errors: 1) The maximum value is always nan and 2) the option --no-stddev suppresses the output from --minmax.
57794bc sets
z(:,1:) = nan
, which causes the max value to always be nan:The text was updated successfully, but these errors were encountered: