Res10
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 3 articles for 0.000 sec
Re: Do loop problem: iteration variable suddenly changing value     

Group: comp.lang.fortran · Group Profile · Search for Res10 in comp.lang.fortran
Author: Dick Hendrickson
Date: Oct 3, 2007 11:48

...) 7972 do k = 1, 5 7973 absc = hlgth*x1(k) 7974 fval1 = f(centr+absc) 7975 fval2 = f(centr-absc) 7976 fval = fval1+fval2 7977 res10 = res10+w10(k)*fval ... enddo At some point at the first iteration (k=1), after the execution of line 7975 k becomes equal to 6 (six), and the program stops at 7977 ...
Show full article (1.69Kb) · Show article thread
Re: Do loop problem: iteration variable suddenly changing value     

Group: comp.lang.fortran · Group Profile · Search for Res10 in comp.lang.fortran
Author: Colin Watters
Date: Oct 2, 2007 14:47

... 7972 do k = 1, 5 7973 absc = hlgth*x1(k) 7974 fval1 = f(centr+absc) 7975 fval2 = f(centr-absc) 7976 fval = fval1+fval2 7977 res10 = res10+w10(k)*fval ... enddo At some point at the first iteration (k=1), after the execution of line 7975 k becomes equal to 6 (six), and the program stops at ...
Show full article (1.59Kb) · Show article thread
Do loop problem: iteration variable suddenly changing value     

Group: comp.lang.fortran · Group Profile · Search for Res10 in comp.lang.fortran
Author: andrea.m
Date: Oct 2, 2007 09:28

... code, quadpack.f90) 7972 do k = 1, 5 7973 absc = hlgth*x1(k) 7974 fval1 = f(centr+absc) 7975 fval2 = f(centr-absc) 7976 fval = fval1+fval2 7977 res10 = res10+w10(k)*fval ... enddo At some point at the first iteration (k=1), after the execution of line 7975 k becomes equal to 6 (six), and the program stops at 7977 because...
Show full article (0.67Kb)