Is it possible change the type (or copy) a double type array into a char?
My objective is mix accurate data with strings, and then write to .txt file.
With your tips, I reach this code:
Program logArray
Implicit None
Integer, Parameter :: wp = Selected_real_kind( 12, 70 )
Real( wp ), Dimension( 1:5 ) :: vals
Character( Len = 40 ), Dimension( 1:5 ) :: stuff
character (40) :: fileName
Integer :: i,stat
Call Random_number( vals )
write(*,*) 'Printing Values from Real array'
do i = 1, 5
write(*,*) 'vals', i, vals(i)
end do
Write( stuff, '( "Value ", i1, " is ", f20.16 )' ) &
( i, vals( i ), i = 1, Size( vals ) )
fileName='log.txt'
open(2, file=fileName, status='replace', iostat=stat)
if (stat /= 0) then
write(*,*) fileName, ' The file cannot be opened !'
go to 20
end if
!Write( *, '( 99999( a, :, / ) )' ) stuff
Write( 2, '( 99999( a, :, / ) )' ) stuff
close(2)
20 write(*,*) 'File Closed'
End Program logArray
However, I still don't get it, if I want to write on log.txt something like
"-----Title of Value 1---------"
Value 1 is 0.9975595900926172
Value 2 is 0.5668247076112733
"-----Value 3 means love-------"
Value 3 is 0.9659153754961249
Value 4 is 0.7479276854714322
Value 5 is 0.3673908973747557
I'm newbie at Fortran. I used to write to files with cycles, your "magic" instruction does the things in a different way, and I don't get it how can I manipulate in main favor.
Thank you very much for your help