Recent content by Triscas

  1. T

    MATLAB Passing 3D Array from Fortran to Matlab

    Hello! I'm working in a programm which has a 3D array with a DIMENSION(16,221,900). When I use the debugger option and I print out the value of the matrix I don't know how to read the info. I already know Fortran uses column-major order, storing the columns in sequence. My doubt is...
  2. T

    MATLAB How to convert GO TO (Fortran77) to Matlab

    I'm translating some code from Fortran77 to Matlab and I'm struggling due to the sentence GO TO is not valid in Matlab. Usually using sentences while I can solve the problem but in a particular case I don't know how to face it. To put in situation, i.e: code line 1 line 2 ... 128...
  3. T

    Fortran What is the purpose of the Fortran 77 commands expg and dexp?

    My bad, I had presumed it should be at the beginning of the code. Thanks again for the quickness. Doubt solved!
  4. T

    Fortran What is the purpose of the Fortran 77 commands expg and dexp?

    In the main program the first time expg appears is already as a function " e1=expg(-arg)", it isn't declare and i don't find the computer the program was written for, though i have a lot of info about it. I don't understand where could it be defined if it's out of the program, how can it be...
  5. T

    Fortran What is the purpose of the Fortran 77 commands expg and dexp?

    Thanks, now I understand why I didn't find information about the function. How could I figure it out the exact meaning? Using debugging options?
  6. T

    Fortran What is the purpose of the Fortran 77 commands expg and dexp?

    Hi! I have the next expression and I don't know what exactly mean the commands a= dexp ((const1)* (b-298) / (b*298)) This one, I guess it's to calculate the exponential value of the expression giving a double precission. But i didn't find any info about the command expg, i.e: a =...
  7. T

    Fortran What does the Fortran 77 command 'write' do and how is it used?

    what does unit 4 mean? The values will have a length of 4 characters? yes, i also understood they're a header the other outputs. The second might be the units of the first
  8. T

    Fortran What does the Fortran 77 command 'write' do and how is it used?

    Hello, I'm new using fortran and I don't know what does it mean: write (4,*) ' ' write (4,310) write (4,311) this lines go consecutive in the programm I have to understand. - might say that 4 is not a reference to a line of the code. - 310,311 are references about how the...
Back
Top