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...
Show off your group to the world. Share a photo of your group with us.

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 24 - 53 of 507   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24
I'm a physics undergrad embarking on my first fortran programming task.<br><br>Essentially, my program (dealing with polymer chain lengths under certain growth...
hughnocturnal
Offline Send Email
Jan 11, 2001
10:47 pm
25
Mr. Nocturnal,<br><br>if your only need is a minimisation package, look<br>up a book/software package called Numerical Recipes in Fortran. It is expensive, but...
demiduet
Offline Send Email
Jan 29, 2001
12:19 am
26
dejandozet,<br><br>used copies of the manual are listed on the <br>web site of ABE Books. They are an exchange for<br>used books. Go to their site ...
demiduet
Offline Send Email
Feb 7, 2001
4:18 am
27
Hello fellow Fortran people, it's a nice surprise to find this club. I'm stuck in the dark ages it seems. I still program using a Microsoft F77 compiler (dos...
devin1955
Offline Send Email
Feb 25, 2001
4:26 am
28
Hi Devin,<br><br>with Microsoft Fortran, at least with version 5.1<br>and later, you can write Fortran subroutines that<br>can be linked to Visual Basic. You...
demiduet
Offline Send Email
Feb 26, 2001
2:48 am
29
I'll find out tomorrow what version of the compiler I'm using (can't recall, and it's on my work system) but it predates VB. It's from the late 80's. How's...
devin1955
Offline Send Email
Feb 26, 2001
3:22 am
30
Hehe, ready? The compiler I'm using is MS optimizing compiler ver 4.00, released in 1987. This is Fortran77. Still works just fine in a DOS environment. ...
devin1955
Offline Send Email
Feb 28, 2001
7:05 am
31
I am using Digital Visual Fortran. It is the compaq version. I have been making DLLs and calling them from Visual Basic with no problem. <br><br>GNU also has a...
kquad4
Offline Send Email
Mar 1, 2001
6:51 pm
32
GNU has a very good fortran compiler, certainly the best I've used, with debugger and all.<br><br>Its free.<br><br>Its native environment is Unix, where it has...
luisdereyna
Offline Send Email
Mar 2, 2001
6:38 pm
33
Hi friends, I'm Chemical Engineer and I'm in troubles with computers and want to know how can I call Fortran from VB. I’m interested in process simulation....
jriosc
Offline Send Email
Mar 9, 2001
8:18 am
34
I am currently translating a Fortran electrostatic moment method analysis program I orignally wrote in Fortran into Visual Basic. I recommend you NOT try to...
emcgizmo
Offline Send Email
Mar 12, 2001
3:09 am
35
Microsoft Fortran had a feature called backslash editing to do this but it is not standard Fortran...
emcgizmo
Offline Send Email
Mar 12, 2001
3:17 am
36
Try "Numerical Recipes in Fortran". It has a number of Fortran subroutines and function for optimization and minimization. More importantly the book explains...
emcgizmo
Offline Send Email
Mar 12, 2001
3:30 am
37
I am currently converting a moment method electrostatic analysis program from Fortran into Visual Basic. Any clues as to what programming techniques slow ...
emcgizmo
Offline Send Email
Mar 12, 2001
3:41 am
38
I'll tell you what little I know, since it was my original question you responded to.<br><br>My experience is quite limited, but the program I was referring to...
devin1955
Offline Send Email
Mar 12, 2001
5:46 am
39
jriosc,<br><br>it's been years since I made a DLL from a Fortran<br>OBJ file, but I remember one pitfall: there was a<br>file called the DEF file that listed...
demiduet
Offline Send Email
Mar 19, 2001
12:59 am
40
I need some help in fortran. I want to learn the language. Which would be the simplest book to get my basics about programming in fortran . <br>I don't have...
kezsrim
Offline Send Email
Mar 23, 2001
3:20 pm
41
As the resident JAVA programmer at my school I was asked to convert an old Fortran program to run under a Win32 environment. I wasn't exactly sure exactly...
penguins21
Offline Send Email
Jun 15, 2001
1:40 pm
42
the correct is<br><br>real I<br><br>or<br><br>I=400.*(.000478*DBH**1.93004*70.**(.35629)-.03474)...
pro_thamer
Offline Send Email
Jun 18, 2001
10:24 am
43
It's plainer if each term with an exponent is<br>put in parens:<br><br>I=400.*(.000478 * (DBH**1.93004) * (70.**.35629) -.03474)<br><br>As written, the result...
demiduet
Offline Send Email
Jun 19, 2001
4:52 am
44
Hello. I've been programming with Fortran since 1965 and still am. A LOT of changes and improvements have been made as I'm sure you know. Right now I work for...
scubaduber
Offline Send Email
Jul 9, 2001
8:17 pm
45
Hi, since I just joined, I haven't had a chance yet to read all of the messages posted so far. But I was wondering if any of you are interested in applying...
scubaduber
Offline Send Email
Jul 9, 2001
8:19 pm
46
I believe that based on the precedence of the operators, the following would be an equivalent...
scubaduber
Offline Send Email
Jul 11, 2001
6:02 pm
47
Sorry, I didn't notice the previous correct answer posted about this question. Sorry for the duplication....
scubaduber
Offline Send Email
Jul 11, 2001
6:19 pm
48
Frankly, I don't think it makes a lot of sense to apply the object oriented paradigm to Fortran. For one thing, it's a call by reference, not a call by value ...
themooksman
Offline Send Email
Jul 12, 2001
4:35 am
49
Two comments:<br><br>1) In Microsoft Fortran, you can specify that a<br> parameter is to be passed by value. You just<br> include [value], brackets and all, ...
demiduet
Offline Send Email
Aug 20, 2001
5:49 am
50
Well, I've never written a compiler from start to finish (let alone an object oriented one) but it seems to me that it would. In Fortran, you're not "passing ...
themooksman
Offline Send Email
Aug 20, 2001
5:58 pm
51
Hello,<br><br>I'm trying to call a Fortran function contained in a dll from a VB 6 program. The function returns the p-value based on the chi square ...
bigcat007_1999
Offline Send Email
Aug 21, 2001
3:46 pm
52
I don't know the first think about VB or dll files, but that Fortran code you list does absolutely nothing....
themooksman
Offline Send Email
Aug 21, 2001
5:09 pm
53
Of course the code I listed does nothing. I omitted 99% of code and substitute an ellipsis. If you knew the first think about VB or dll files, you would ...
bigcat007_1999
Offline Send Email
Aug 21, 2001
6:25 pm
Messages 24 - 53 of 507   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