hi, i have a set of x,y,t in a text file sect.txt.. first line represents x1,y1,t1 and second is x2,y2,t1... the 4th line(3rd line is blank) is x3,y3,t2, followed by x4,y4,t3... i want to plot line which has coordinates x1,y1 and x2,y2, with thickness = t.. similary next line has coord = x3,y3...
Hi, i want to read a particular string from a text file using autoit. i wish to read it without explicitly opening the text file. the copied string should be then transferred to a excelbook (again, no need to open the excel book)...
with reference to my screenshot attached, my input to script...
hi JG2828, is it possible to include bit of programming into macro recorder - ie; i wish to run a 3rd party software - after the first run (invoked by the the macro), the macro should be capable of reading the output text file, search for some specific values in it, do some calculations with...
Hi, i wish to automate windows applications with a script. which one is best to learn - perl or python. My plan is to
1. automate windows applications, eg; invoke a software and make it run with certain inputs
2. read/write/replace text at specific locations inside the file
3. built small gui's...
Hi, i use autoit recorder to record the mouse clicks. i just want to record how to automatically open notepad.. the procedure i followed is uploaded as a video. when i run the .au3 file, the windows key gets activated and then the 'notepad' is not getting typed and in the taskbar, the script...
Hi, I have gnuplot, which I use with fortran for ploting. I wish to know if a 3d plot generated in gnuplot using 'splot' can be saved as a dynamic pdf ? ie; whether I can rotate the model in pdf as I do in the gnuplot output window ? thanks
Depending on a generated integer 'n' in the program during its execution, i require variables of type k1, k2, k3....kn to be generated in the program. is it possible in fortran - I know allocatable arrays is an option - I have to just declare 'k' as an allocatable 1d array. but my elements in...
thanks @IRStuff
@MikeHalloran, I understand that the restriction is compiler preprocessor capability. I am using gfortran which came with fortrantools (http://www.fortran.com/ ). I don't know about the compiler capability - but if it is capable, is there any guideline on how to use this...
@IRSTUFF - I think my last post was not clear.. I meant I have 100 call statements which are independent (ie; the execution of one call statement does not require anything from other call statements). however, all call statements refer to the same subroutine.
@IRSTUFF - the 100 subroutines are independent in my case, but all use the same subroutine...so I have to wait for all to get executed one by one even though they don't have to wait (technically as per the algorithm)
hi, I have a subroutine in my f95 program. this subroutine is called 100 times (by 100 call statements). I understands that each call statements are executed one after the other. is there any way I can call and execute all the 100 call statements in one go.
thanks