I have an .csv
file made in Excel and that Excel uses ;
as delimiter. I don't like that, but I cannot change it.
So I have to accept it.
I want to read that .csv
file in GNU Octave
, but I can't really do it because the float numbers inside the .csv
file is separated with ,
e.g 15,25
and not separated with .
e.g 15.25
because in Excel, it assumes that 15.25
is a text string and 15,25
is a number. Yes, I know, it's weird.
If I change all ,
to .
in my .csv
file, then I can read the .csv
file with dlmread
or csvread
. But in this case, I don't want to change ,
to .
because that's a standard Excel configuration.
So my question is:
If you have a .csv
file were the float numbers are displayed with ,
. How can you read that .csv
file in GNU Octave
then?