Recent content by astroastro

  1. A

    Fortran Add Library to Fortran - Learn How to Launch Free Libraries

    I use windows 7 I couldn't find any other instruction in the site.I had thought about what you are saying .instruction wasn't really clear :D
  2. A

    Fortran Add Library to Fortran - Learn How to Launch Free Libraries

    actually none I just started learning fortran about 3 weeks
  3. A

    Fortran Add Library to Fortran - Learn How to Launch Free Libraries

    yes but It wasn't so meaningful to me , for example it said : ... export FC=<fortran compiler command> export FCFLAGS=<additional Fortran flags>... I couldn't find these files in the FGSL file where are they? and I also it need so many modification and extra files which I don't have them :( Do...
  4. A

    Fortran Add Library to Fortran - Learn How to Launch Free Libraries

    Hi I'm completely new to fortran I've downloaded FGSL and I don't know how to run it and also I don't How should I launch the free libraries in fortran,can give me an outline?
  5. A

    Fortran Rank mismatch and incompatible ranks 1 and 2

    Hi I'm completely new in fortran programming and I just ran this code program array_test implicit none integer, parameter :: row = 3, column = 4 integer :: i, j integer, dimension(row: column) :: array2 open(1, file = "matrix.txt") array2 = reshape((/1,2,3,4,5,6,7,8,9,10,11,12/),(/row,column/))...
Back
Top