[問題] 有關 定址陣列 以及 常用副程式之間的問題

看板Fortran作者 (祈)時間15年前 (2009/06/28 22:51), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/2 (看更多)
program yes implicit none ...... logical,allocatable:: trans_all(:,:) ...... open(11,file='read_mode_total.txt') ...... read(11,*)total allocate(trans_all(1:total,12)) ...... call contrast_test(trans_all,test_result) ...... end program ride subroutine contrast_test(trans_all,test_result) implicit none ...... end 請問我該怎樣寫 在副程式中 也能開啟trans_all test_result也是個定址陣列 我想在副程式中以某變數來開啟 又該如何寫? 我試過很多種 主副都寫上定址陣列 卻無法成功 請高手指點 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 218.175.219.69
文章代碼(AID): #1AHuEECG (Fortran)
文章代碼(AID): #1AHuEECG (Fortran)