I have an array of floats or doubles lets call it foo. When I do
size(foo)
I get these 5 dimensions
2 67 52100 4 3498338
I would like to convert it to a string like
str="strcture={arr:"+foo+"}"
so that I can then do
Execute(str)
How can I convert foo
to a string dynamically?