May 31, 2017 at 1:40am
Hey guys,
I have a CSV file including double values in two columns, and I want to split the file and copy each column into a vector. For example:
A.csv :
1.1,2.1
3.1,4.1
5.1,6.1
7.1,8.1
to:
A1: 1.1 3.1 5.1 7.1
A2: 2.1 4.1 6.1 8.1
Thanks a lot!
Last edited on May 31, 2017 at 1:43am
May 31, 2017 at 2:14am
Sounds easy enough, what have you tried?
May 31, 2017 at 1:24pm
Yes, you are right. I solved it, thanks! :)