How to convert this 2D code segment with random number into the FORTRAN code?

4 Ansichten (letzte 30 Tage)
Nx = 4
Ny = 4
c1 = 0.12
rr = 0.0001
for i=1:Nx
for j=1:Ny
D(i,j) =c1 + rr*(0.5-rand);
end
end
It contains random number in Matlab code and it is also in 2D.
  8 Kommentare
dpb
dpb am 18 Aug. 2020
Bearbeitet: dpb am 18 Aug. 2020
Which Fortran compiler are you using on what platform and for what kinds of tasks?
Fotran and MATLAB have much in common in terms of basic syntax; in fact the earliest MATLAB was actually written in FORTRAN.
If you want/need support on the Fortran side, the usenet comp.lang.fortran group is still active and for the most part pretty lenient on newbies.
The biggest drawback of Fortran vis a vis MATLAB is the lack of the higher level abstractions for data structures like the table, cell arrays, etc. But, if you're simply "crunching numbers", oft times you can outperform MATLAB significantly with compiled code-- but, then again, if you can write your algorithm to get it into a vectorized form and down in the bowels of machine code in the BLAS routines or the like; you're essentially running the identical code because that's what MATLAB is built on at its very core for those operations. It's all the stuff added on around it that is the speed hog...
There are a lot of books -- from you description I'd probably recommend https://www.amazon.com/Fortran-90-95-Scientists-Engineers/dp/0072825758 as a starter...it's not a reference but not a "for dummies", either.
It's still at the F95 Standard, though and there are a lot of new features in F2003/2008 that are now in most compilers.
I've not kept up with it much having now been out of the consulting gig so I'm not so sure about what to recommend there.
Robert101
Robert101 am 19 Aug. 2020
I have started with these compilers:
and was learning from different online sources like:
Also i have bought many books about Fortran and trying to understand and compiling the examples there.
With the passage of time different problems seem to occur. As suggested by people i started to work on new compiler for fortran i.e. Code::blocks. To plot different graphs with GNU was kind of hard to understand and implement. The help to integerate it into that compiler from different forums was never sufficient. So i moved to another compiler.
Few days back i bought the comiler: Simplyfortran. It is not very expensive to buy for a student. Also it has some fundamental libraries and plotting facilities.
Then comes another area. How to use scientific libraries which are the bakbone of my coding program? For instance i need fast fourier transformation of my 2D matrix. It is so easy in matlab to just write fft(variable) and get the results. But my compiler does not have it. GNU scientific library is full of resources of subrouritnes like these but i need to buy it for my compiler too. There is an advantage to buy that package that it gives me around 100 packages to add in my compiler. But still they do not claim that it will always work on the compiler.
NAG compiler with Numerical algorithm libraries seems to be the perfect choice to work with Fortran. But then it is very expensive and could not be afforded.
I am working on Mathematical modeling related to 2D partial differential equations. Therefore, the fundamental algorithm is in 2D and could be written in Fortran with some effort. Although playing around with matrixes with saving different files should not be that hard but rather time consuming for the newbie.
I think it is mostly because no one is around working actively on Fortran but on C, C++ or Java, i could not get much from these people.
Also my Boss has never worked on Fortran, and is also not willing to spend money to buy any compiler.
Therefore, the discussion or proper understanding of Fortran is not easy atleast at this stage.
Apparently, the only advantage is that the code is already written in matlab. I need to convert it into fortran language only. But then the functionalities provided by matlab are so comfortable that Fortran seems to be a daunting task. The blessing in disguise is the increase in my understanding of the most famous scientific computing language.
I keep my fingers crossed.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

A.B.
A.B. am 18 Aug. 2020
Bearbeitet: A.B. am 18 Aug. 2020
James Response in the above is correct. I would only say that it can be further modernized with the new, more specific, Fortran 2003 syntax, which makes it compiler and architecture independent:
use iso_fortran_env, only: IK => int32, RK => real64
integer(IK), parameter :: Nx = 4_IK
integer(IK), parameter :: Ny = 4_IK
real(RK), parameter :: c1 = 0.12_RK
real(RK), parameter :: rr = 0.0001_RK
real(RK) :: D(Nx,Ny)
call random_number(D)
D = c1 + rr * (0.5_RK - D);
write(*,*) D
end
  1 Kommentar
Robert101
Robert101 am 18 Aug. 2020
Thanks a lot. You have written in the best way and i have learnt from it some new ways to write it in better ways.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

James Tursa
James Tursa am 18 Aug. 2020
Bearbeitet: James Tursa am 18 Aug. 2020
For your particular case, looks like the MATLAB code could reduce to:
Nx = 4;
Ny = 4;
c1 = 0.12;
rr = 0.0001;
D = c1 + rr*(0.5-rand(Nx,Ny));
The Fortran equivalent could be
integer, parameter :: Nx = 4
integer, parameter :: Ny = 4
double precision :: c1 = 0.12d0
double precision :: rr = 0.0001d0
double precision D(Nx,Ny)
call random_number(D)
D = c1 + rr*(0.5d0-D);

Kategorien

Mehr zu Fortran with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by