Hi I am using Fortran 77. I need to read multiple files and store the values. The details are following.
I have files with names tau_modelC_total_z0.30.dat, tau_modelC_total_z0.31.dat,tau_modelC_total_z0.32.dat.........tau_modelC_total_z1.00, nearly 100 files.
Each file contains two column data of E and tau values. Each file is for particular z (as indicated in name of the file) and it increases in step size of 0.01. Basically, for each data file, I have E and tau values for particular z value. E values are same in all the data files.
I want to store z, E and tau values say x1a is the array of z values, x2a is the array for E values and ya is the array for tau such that tau(z,E) ie, a function of both z and E. I want to use this array for the interpolation so that I can get tau value for any z and E.
Please tell me how can I do that .