08-30-2007 07:31 AM
08-30-2007 07:55 AM
09-12-2007 06:31 AM
09-12-2007 09:25 AM
You can use the string format functions to build your command line to send to the sysexec. Doing this in a loop can simulate a batch (Pass an array of static strings) or using the index to automate do for data1 to datan type batches.
Paul
09-12-2007 01:49 PM
@indrajit wrote:
my question is if i am having one fortran exe . where i want to choose the file which is to be manipulate and after that i want to call that fortran exe to manipulate and the result should display using labview...because manipulating that using labview which takes so much of time so that i am going for fortran ...any one plzzz
There are two issues:
There is no good reason why LabVIEW should be much slower that fortran code, so maybe you are doing things wrong. (too many data copies, building arrays inside loops, etc.). If you show us your LabVIEW code, we might be able to tell if there are problem areas. LabVIEW code can be made very fast! If fortran is significantly slower, you are pumping a lot of hot air in your LabVIEW code.
What exactly does the fortran code do?
Another option: If you know fortran and have access to the source code, you can built your fortran code into a dll. This will make a few things easier. 🙂 I would recommend this way if the algorithm is very complex and the fortran code works perfectly.
09-12-2007 09:07 PM
09-12-2007 10:50 PM
09-13-2007 03:49 AM
09-13-2007 09:58 AM
09-13-2007 10:35 AM