Another option (since you want to open the file in the matlab workspace):
upload file using
a=load('filename.txt');
Since the comma is the default separator, you get a 2xN matrix, for example:
a = 0 472412 0 455627 0 439148 0 421753
Find a significant number of digits to get the correct decimal point position:
d = 10.^(1+floor(log10(abs(a(:,2)))));
then
v=a(:,2)./d
will give you the vector you need. Now you can save it back to a file or do something ...
source share