Hi,
I am new Julia coder (I started to learn Julia two weeks ago). I have a
problem with writedlm and readdlm functions.
I have an array of vectors:
Vector Array{Float32,N},4
When I try to save it using writedlm to txt file and next read that file
using readdlm I obtain a matrix:
Matrix Any, 4
which contains four substrings like: "Float32[1,2,3..."
so my question is: is there any simple way to convert that strings into
arrays of floats?
I also need to write and read files of Any type arrays which contains float
vectors of different lengths.
Thank you very much for your help,
J