Search the web
Sign In
New User? Sign Up
Fortran · Fortran Q/A's, info, lib and fans
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 137 - 169 of 508   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
137 Wei Huang
w_huang71
Offline Send Email
Oct 7, 2002
12:44 pm
138
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...
w_huang71
Offline Send Email
Oct 7, 2002
4:54 pm
139
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...
Wei Huang
w_huang71
Offline Send Email
Oct 7, 2002
5:11 pm
140
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 ...
Varun Kanade
varunnkus
Offline Send Email
Oct 15, 2002
8:04 am
141
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 ...
robert_68x
Offline Send Email
Oct 31, 2002
6:57 pm
142
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...
lerougesrm
Offline Send Email
Nov 6, 2002
12:19 am
143
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...
lerougesrm
Offline Send Email
Nov 6, 2002
12:20 am
144
Could someone tell me how I could write a large 2d array to a file? Thanks Jeremy...
Jeremy
j2002nde
Offline Send Email
Nov 23, 2002
10:07 pm
145
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...
Dr. G. S. Srinivasan
gss_vasan
Offline Send Email
Nov 25, 2002
9:17 am
146
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...
john_puffer <john_puf...
john_puffer
Offline Send Email
Dec 8, 2002
3:55 pm
147
Dear All, ... Main program . . . . ... subroutine sections ... subroutine 1 . . . . subroutine 2 . . . . ... When I put the subroutines in a blank program...
thallia99 <thallia99@...
thallia99
Offline Send Email
Dec 17, 2002
10:03 am
148
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...
harsha
prince_12hg
Offline Send Email
Dec 21, 2002
2:55 pm
152
hiii, i am looking for a subroutine to solve a set of equation with SNE method could you help me? best regards mina ...
mina khoshnejad
mina_432000
Offline Send Email
Jan 30, 2003
2:30 pm
153
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...
ragip tolga
ragip_tolga
Offline Send Email
Jan 31, 2003
2:49 pm
154
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...
Vinay
vinay_cdac
Offline Send Email
Feb 6, 2003
6:04 am
155
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...
Raj Gupta
rajgupta121
Offline Send Email
Feb 6, 2003
3:03 pm
156
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...
Vinay
vinay_cdac
Offline Send Email
Feb 7, 2003
3:23 am
157
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...
Raj Gupta
rajgupta121
Offline Send Email
Feb 7, 2003
4:17 am
158
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...
E.E
erenezgu
Offline Send Email
Feb 7, 2003
11:33 am
159
In Ftn77 try BLOCK DATA COMMON /ARRAYNME/ VINARRAY(6) INTEGER SIZE PARAMETER (SIZE = 6) DIMENSION VINARRAY(6) DATA (VINARRAY(I), I = 1,6) / SIZE * 0.0/ . . . ....
Howard Jones
holyheadian
Offline Send Email
Feb 7, 2003
1:49 pm
160
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...
vinay_cdac <vinay_cda...
vinay_cdac
Offline Send Email
Feb 9, 2003
8:18 am
161
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...
demiduet
Offline
Feb 19, 2003
3:13 am
162
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...
demiduet
Offline
Feb 20, 2003
6:40 am
163
... program main common /CNMN1/ DELFUN, DABFUN, FDCH, FDCHM, CT, CTMIN, CTL, + CTLMIN, ALPHAX, ABOBJ1, THETA, OBJ, NDV, NCON, +...
Joel Konkle-Parker
joeljkp
Offline Send Email
Feb 28, 2003
2:52 pm
164
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...
Raj Gupta
rajgupta121
Offline Send Email
Feb 28, 2003
3:31 pm
165
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...
Joel Konkle-Parker
joeljkp
Offline Send Email
Feb 28, 2003
5:58 pm
166
Hi, Did you define the COMMON in the subroutines also? If not, define and see the result. Raj ... __________________________________________________ Do you...
Raj Gupta
rajgupta121
Offline Send Email
Mar 1, 2003
4:15 am
167
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...
Vinay
vinay_cdac
Offline Send Email
Mar 3, 2003
3:33 am
168
Yes, COMMON is identical in the subroutines as in the main program. - Joel ... -- Joel Konkle-Parker Multidisciplinary Optimization Branch Aerospace Systems,...
Joel Konkle-Parker
joeljkp
Offline Send Email
Mar 3, 2003
12:22 pm
169
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 ...
Joel Konkle-Parker
joeljkp
Offline Send Email
Mar 3, 2003
7:14 pm
Messages 137 - 169 of 508   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help