How to Continue Long Equation in Fortran
How to continue a string to the next line?
How to continue a string to the next line?
Author | Message |
---|---|
I have an output statement for debugging that shows the formula used c) do nothing and the first non-space after the continuation character I can't find any help on this anywhere! --== Sent via Deja.com http://www.*-*-*.com/ | |
Wed, 18 Jun 1902 08:00:00 GMT | |
| |
Quote: > I have an output statement for debugging that shows the formula used > c) do nothing and the first non-space after the continuation character > I can't find any help on this anywhere! > --== Sent via Deja.com http://www.deja.com/ ==-- Put a comma after the break. Note that if you are using an F77 compiler WRITE (75,*) 'AK2=4.*RC*R(J)/((RC+R(J))**2+(ZT-ZC(N))**2) An alternative, which is Standard F77, but that not all F77 compilers WRITE (75,*) 'AK2=4.*RC*R(J)/((RC+R(J))**2+(ZT-ZC(N))**2) Jerry . . . -- Custom Solutions http://www.cs-software.com/ | |
Wed, 18 Jun 1902 08:00:00 GMT | |
| |
Quote: > I have an output statement for debugging that shows the formula used was more about f90 free source form. Quote: > a) terminate the first line with a ', use a continuation character and would be just like writing the 2 strings on the same line, with no punctuation other than blanks between them. I.E. like write (*,*) 'Some stuff' ' and some more stuff' which isn't legal. Quote: > b) put a comma after the first ' in the sample above to make two contexts. Probably doesn't matter in this case. In cases where it does matter, you can use a concatenation operator to combine the two strings into one, as in write (*,*) 'Some stuff' // (Doesn't matter whether the concatenation operator is at the end of the Quote: > c) do nothing and the first non-space after the continuation character system to system. The main issue here involves determing where the first line ends and thus how many blanks end up in the middle of your string. Are all lines implicitly padded to exactly 72 columns? Does the line end at the last explicitly typed blank? Are all trailing blanks implicitly ignored? Something else. I recommend avoiding this, even if it appears to work like you need on -- | |
Wed, 18 Jun 1902 08:00:00 GMT | |
| |
Quote: > Put a comma after the break. Note that if you are using an F77 compiler that in standard f77 the data for list-directed character input must be enclosed in quotes. Some vendors (and the f90 standard) allow the quotes to be omitted in simple cases where it makes sense. But this has nothing to do with list-directed output. And even for input, its not that list-directed character input is illegal - rather that its requirements are inconvenient and not what many applications would want. Quote: > An alternative, which is Standard F77, but that not all F77 compilers I suppose I might once have seen such a beast maybe 15-20 years ago really support the full language). I guess I heard once (but never used) an f77 compiler that conformed only to the f77 subset instead of the full language. Whatever it was, it was either something really obscure or a figment of my imagination. (And an f77 subset compiler would be missing an awful lot more than just this). I'd be interested in knowing what f77 compiler of any practical current I can't imagine worrying about portability of this. I've certainly -- | |
Wed, 18 Jun 1902 08:00:00 GMT | |
| |
Quote: > I suppose I might once have seen such a beast maybe 15-20 years ago compiler. Certainly old and possibly obscure but definitely not a figment of my imagination. Working with this gave me an strong aversion to subset compilers | |
Wed, 18 Jun 1902 08:00:00 GMT | |
| |
Quote: >> Put a comma after the break. Note that if you are using an F77 compiler >Eh? The only thing I can think of that you might be referring to is character data or otherwise. Perhaps some memory wires got crossed and the original poster thought that restriction applied to this situation? BTW, this is legal now since f90. Another possibility is that the spacing before and after character data in $.02 -Ron Shepard | |
Wed, 18 Jun 1902 08:00:00 GMT | |
Powered by phpBB® Forum Software
Source: http://computer-programming-forum.com/49-fortran/60cf4fd13e4b8e88.htm
0 Response to "How to Continue Long Equation in Fortran"
Post a Comment