Fortran jump command for fortran 95

  • Fortran
  • Thread starter buddhanath
  • Start date
  • Tags
    Fortran Jump
In summary: You don't tell us what line 7 is. We can guess it's the only line with a goto statement, but it's a guess.4. You don't tell us what the error message is on line 7. We can guess it's something like "Label 99 not defined", but we don't know. You could have told us.5. You don't tell us what the error message is on line 1 or 2. We can guess it's something like "unexpected symbol" or "illegal expression". You could have told us.6. You don't tell us what FORTRAN you are using. "FORTRAN 95
  • #1
buddhanath
2
0
Even after writing the label , it is showing that label is not defined, please help!
my program reads...…...
……...
Fortran:
99 z = b + 2*c*(d - 0.0792079*(e + log((( sqrt(x) + 1.52569)**5.64616)/(((sqrt(x) - 1.26704)**5.93863)*((sqrt(x) - 0.258652)**50.2075)))) - 2 log(x))
zs = g + 2*i*(d - 0.0792079*(e + log((( sqrt(x) + 1.52569)**5.64616)/(((sqrt(x) - 1.26704)**5.93863)*((sqrt(x) - 0.258652)**50.2075)))) - 2 log(x)) + 2*j*(-0.0792079*( k-l +( (m-n-o)*p)/q + r))
h = -z/zs
tol= 0.0001
x= x+h
if (abs(h) .gt. tol) then
  goto 99
  else
  print*, "the root of the equaton is ", x
end if
end program
 
Last edited by a moderator:
Technology news on Phys.org
  • #2
PLEASE ... use the "code" tag so your post doesn't look so sloppy.
 
  • Like
Likes Wrichik Basu
  • #3
I know nothing in Fortran, but it seems that the label 99 should be defined after it is mentioned in a goto statement.
 
  • Sad
Likes Vanadium 50
  • #4
Wrichik Basu said:
I know nothing in Fortran, but it seems that the label 99 should be defined after it is mentioned in a goto statement.
No. The compiler figures out the labels before it tries to run, so the label can be defined before it is referenced.
The original versions of FORTRAN were very column-dependent. Anything in column 1 was the beginning of a comment. There were a lot of column rules. I would check into that. The first 5 columns were for labels. Anything in column 6 meant that the following is a continuation of the prior row. Code was not allowed to go beyond column 72. I do not know about the modern versions.

It often helps to see the exact error message and what line and column it thinks the error is on.
It also often helps to know what version of FORTRAN you are using.
 
Last edited:
  • Like
  • Informative
Likes Vanadium 50, Wrichik Basu and berkeman
  • #5
Its FORTRAN 95. It only shows problem sometimes when I am using big equations
 
  • #6
Clearly, this is just part of the program. It is not possible to know if everything was defined and compiled successfully. If long equations seem to cause a problem, see if breaking up the equation into a few steps solves the problem. If so, then you have narrowed down where to look. If not, something else went wrong.
 
  • #7
A wise man once said:
Vanadium 50 said:
"Check my work" is a really heavy ask.

You can make it easier with well-documented code, easy to understand variable names and logic structure, and the minimum example needed to demonstrate the problem.

  1. This is not complete code.
  2. "It only shows problem sometimes when I am using big equations" is annoying. Does this code show the problem or not?
  3. FORTRAN has no "jump" statement. Yes, we can figure out what you mean, but we shouldn't have to. Sloppy writing makes us work harder, just as sloppy thinking makes you work harder.
  4. If you are really using FORTRAN 95 you should not be messing with GOTO's. You should use some other structure, perhaps DO-WHILE. That is not some exotic function new to FIRTRAN 95 (itself a quarter-century old). It was in FORTRAN 77.
 
Last edited:
  • Like
Likes FactChecker
  • #8
The GOTO is notorious because of extreme examples of "spaghetti code". But using it in simple ways should work with no problems. It certainly is frowned on by those who have been traumatized by the bad examples so it's a good habit to avoid it. In any case, you should always indent the interior of the loop so people (including you) can easily see it.
 
Last edited:
  • #9
Vanadium 50 said:
If you are really using FORTRAN 95 you should not be messing with GOTO's.
This, especially (not that the other parts aren't also valid).

If you must use goto, I suspect that the problem is that the label 99 is not in the right place; i.e., somewhere in columns 1 through 5. Because it likely is not located correctly, the compiler doesn't know that you intend it to be a label.
 
  • Like
Likes Vanadium 50 and FactChecker
  • #10
buddhanath said:
It only shows problem sometimes when I am using big equations
These aren't equations -- they are assignment statements where the stuff on the right side is some expression you want to evaluate. As already mentioned, best practice is to break up these big expressions. Doing so makes debugging a lot easier.

You are using a debugger, right?
 
  • Like
Likes Vanadium 50 and FactChecker
  • #11
I agree with all the recommendations above; using an IDE with a debugger (or a syntax-checking code editor), breaking up long assignment statements, using do...while instead of goto, taking note of all compiler errors and warnings - these would all help you find the problem yourself.

But this once I'll find it for you - the first line you posted contains the code 2 log(x) which is not correct and prevents the line from compiling so the label 99 is not created.

This should presumably be 2 * log(x).
 
  • Like
Likes Wrichik Basu, Vanadium 50 and Ibix
  • #12
Lessons from @pbuk's message:

0. I see you've been back but haven;t responded to the excellent advice you have received. That's not a good way to get more help.
1. He spotted a syntax error in Line 1. There's also one in Line 2. You never mentioned these to us - just the one on Line 7.
2. If you don't tell us all of the error messages you are getting, it will be very hard for us to figure out the problem.
 
  • #13
pbuk said:
This should presumably be 2 * log(x).
Good catch! I didn't scroll to the right on these long code lines, so missed this one, and the similar error on the next line. This is another reason that argues against using overly long and complicated expressions in assignment statements.
 

What is the Fortran jump command for Fortran 95?

The Fortran jump command for Fortran 95 is the EXIT statement. It allows a program to exit a DO loop prematurely and continue execution at the next statement after the loop.

How is the Fortran jump command used?

The EXIT statement is followed by an optional label, which specifies the statement to which the program should continue execution. If no label is provided, the program will continue execution at the statement immediately following the DO loop.

Can the Fortran jump command be used in nested loops?

Yes, the EXIT statement can be used in nested loops. It will only exit the innermost loop in which it is placed, and then continue execution at the next statement after that loop.

Are there any restrictions on using the Fortran jump command?

Yes, there are a few restrictions on using the EXIT statement. It can only be used within DO loops, and the label specified must be within the same DO loop. Additionally, the EXIT statement cannot be used within IF or SELECT CASE statements that are nested within the DO loop.

Is there an alternative to using the Fortran jump command?

Yes, there is an alternative to using the EXIT statement. Instead of exiting the loop prematurely, the EXIT statement can be replaced with a CONTINUE statement, which will continue execution at the beginning of the next iteration of the loop.

Similar threads

  • Programming and Computer Science
Replies
19
Views
2K
  • Programming and Computer Science
Replies
2
Views
1K
  • Programming and Computer Science
Replies
8
Views
1K
  • Programming and Computer Science
Replies
5
Views
2K
  • Programming and Computer Science
Replies
3
Views
1K
  • Programming and Computer Science
Replies
26
Views
3K
  • Programming and Computer Science
Replies
3
Views
1K
  • Programming and Computer Science
Replies
4
Views
1K
  • Programming and Computer Science
Replies
6
Views
1K
  • Programming and Computer Science
Replies
18
Views
16K
Back
Top