Hi researchers. I have define a loop in which predefine arrays get one element for each iteration . Like below:
Loop i(1,n)
Result(i) =string(ydis) +',' +string(sigma)
Rotation(i) =string(rot) +',' +string(ydis)
End_loop
I want to transfer the containts of one array to text file.l use below code but the text files have unreadable characters in many lines not one column.
oo=open('result' , 1,0)
oo=write(Result, n)
oo=close
I appreciate your time for helping me.