3 Unanswered Topics

Remove Filter
Member Avatar for
Member Avatar for hypernova

Hi all !! I am new to Fortran. Please see the following code: program exp_realloc implicit none integer,allocatable,dimension(:,:):: array integer::i,j allocate(array(3,3)) write(*,*)size(array,1)," ",size(array,2) do i=1,3 do j=1,3 array(i,j)=i*j write(*,*)array(i,j) enddo write(*,*) enddo CALL func(array) end program exp_realloc subroutine func(array) integer,dimension(:,:),intent(in)::array integer::i,j write(*,*)"********* Inside subroutine **********" write(*,*)size(array,1)," ",size(array,2) write(*,*)array(1,1) write(*,*)array(1,2) write(*,*)array(2,1) …

0
131
Member Avatar for japtech

Hi All, Ok to make it clear from the start I'm a 'noob' with anything complex in computing. Currently I have been asked to look into using the Linpack Benchmark Software to run on computer workstations for Energy Star performance testing. I have spent the last few weeks combing the …

0
147
Member Avatar for orsodani

Hi everybody I have've been asked to do something but I can get only to a point and I am now stuck. Please help. I have written a Sub in VBA for Excel 2003 (see below) in which the top cell of a range (WorkRange) is initially set at Cells(1,2), …

0
154

The End.