How can I load and save a excel data file (which has negative values in some rows) in MATLAB as an executable double. I tried and it gives me NAN for negative values. Here is the file. Thanks.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello I am using MATLAB 2018a. How can I load and save a excel data file (which has negative values in some rows) in MATLAB as an executable double. I tried and it gives me NAN for negative values. Here is the file. Thanks.
Risposta accettata
the cyclist
il 15 Ott 2018
The problem is that in the Excel file, those are not negative signs in those numbers -- they are dashes or some other character. Therefore, they are interpreted as text, not as numbers.
If you globally replace those characters with negative signs (i.e. hyphens), then
x2 = xlsread('index2.xlsx')
will read it just fine. I've done that in the attached file.
4 Commenti
the cyclist
il 15 Ott 2018
What I did to create my index2 file was to go into a single cell, and copy that dash symbol onto the clipboard. Then I did a global replace with a hyphen, and save.
Più risposte (1)
madhan ravi
il 15 Ott 2018
Modificato: madhan ravi
il 15 Ott 2018
[num,~,~] = xlsread('index.xlsx')
Datas = num
Now we can manipulate the data’s as we want.
5 Commenti
Vedere anche
Categorie
Scopri di più su Data Import from MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!