Dear all, Has anybody used Salford Fortran Compiler and Linker before? If you has, could you please let me know how to use SLINK command in script file mode? I...
Dear all, Has anybody used Salford fortran compiler before? If you has, could you please let me know how to use SLINK command in script file mode? I need to...
Hi, Is there any function in fortran equivalent to getch() or getchar() function in C The aim is that the function should read character input, without ...
Greetings from Texas. I am a Mainframe Fortran and Cobol Programmer. I have been used to to coding systems on IBM MVS Machines. I have been using Ryan ...
HI, I have a kind of basic history question regarding Fortran. Did earlier versions of fortran have incompatibility. If so in what form(ie statement type,data...
HI, I have a kind of basic history question regarding Fortran. Did earlier versions of fortran have incompatibility. If so in what form(ie statement type,data...
Mr/Ms Jeremy You have to write a format of type FORMAT (N(2x,e12.5)) where N is the number of elements in a row. Write the variable over this format thro a do...
I am looking for a subroutine or library thta has a multipane graphics window similar to those used in CAD programs. Some of these have actual active panes...
Dear All, ... Main program . . . . ... subroutine sections ... subroutine 1 . . . . subroutine 2 . . . . ... When I put the subroutines in a blank program...
i think with a fortran 90 compiler this works alright Catch all the cricket action. Download Yahoo! Score tracker [Non-text portions of this message have been...
hi, could you explain us a little more about sne method,.. is it numerical method or analitic matrix solution. Or better to send algorithm of SNE. so we can...
Hi all, If I have to initialize all the elements of an array , are the statements below valid?? I don't want to use do loop ti initialize all elements because...
Hi, You can use "dimension vinarray(6)" Here in the one dimension array you can store at the most 6 elements. For 2 dim, one can use dimension x(10,10) This is...
Thanks Raj, I do use DIMENSION VINARRAY(6) But I see only in UNIX the array is initialized to 0. On Windows all the array elements are initialized to some...
Hi, Frankly speaking I never tried to compile and run a fortran prog. on windows platform. In the worst case you can create a subroutine for initialisation and...
i have a simple question: can i run programs ive made with fortran in msdos. ive tried this but it says that the program requires windows.thanks for...
I am compiling a subroutine in no-debug mode and I am getting the following warning. I don't get this warning in debug mode( I don't get this warning on...
It looks as if the error message gives the answer. Does the program use any special feature of Windows, such as writing into a window? Also, was it compiled...
I think your routine is too long to be optimized. 2200 lines is quite long for a subroutine! Optimization requires the compiler to construct a lot of tables...
Hi Joel, You are not receiving the modified IGOTO from the CONMIN routine. That is why it stays as it is defined in the main program. Try to receive as an...
I'm afraid I don't quite understand... I thought COMMON made the defined variables accessible to all program units? Doesn't that mean that each unit can modify...
Hi, Did you define the COMMON in the subroutines also? If not, define and see the result. Raj ... __________________________________________________ Do you...
Raj is right.. You will have to define the COMMON block in all subroutines in which u use the common variables This is an example COMMON /JACK/ A,B,C,DCOMMON...
Yes, COMMON is identical in the subroutines as in the main program. - Joel ... -- Joel Konkle-Parker Multidisciplinary Optimization Branch Aerospace Systems,...
Just to let everyone know, I've fixed this problem. The cause was something completely unrelated to the common block in question. -- Joel Konkle-Parker ...