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...
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...
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...
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...
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...
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. ...
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...
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...
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....
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...
Try "Numerical Recipes in Fortran". It has a number of Fortran subroutines and function for optimization and minimization. More importantly the book explains...
I am currently converting a moment method electrostatic analysis program from Fortran into Visual Basic. Any clues as to what programming techniques slow ...
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...
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...
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...
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...
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...
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...
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...
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 ...
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, ...
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 ...
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 ...
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 ...