You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C> This subroutine decodes an integer from a character string. The
C> string should contain only digits and (optional) trailing blanks.
C> It should not contain any sign ('+' or '-') character nor any
C> leading blanks nor embedded blanks.
Can this not be done with standard fortran in a single command? Why do we have a subprogram for this?
The text was updated successfully, but these errors were encountered:
There's no single standard Fortran command that I've ever seen which does this. But in #406 I was able to greatly simplify and modernize both strnum and strsuc (and convert them to F90), and I also removed the duplicated functionality in valx.
We have strnum.f. It says:
Can this not be done with standard fortran in a single command? Why do we have a subprogram for this?
The text was updated successfully, but these errors were encountered: