[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: csv file problem to open
From: |
Ian McCallion |
Subject: |
Re: csv file problem to open |
Date: |
Mon, 18 Feb 2019 14:27:43 +0000 |
On Monday, 18 February 2019, mrodrig <address@hidden> wrote:
Yes, you are rigth. But I was wondering if any posibility to read the file
and change the decimal separator in octave. Exist such function?
--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
Ah of course the comma is the decimal separator. (We are not used to that in the uk!)
So try
data = dlmread (file, ';');
Cheers... Ian