splitting a CSV file to different columns

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
Sounds easy enough, what have you tried?
Yes, you are right. I solved it, thanks! :)
Topic archived. No new replies allowed.