how to get numerical values as well as texts in a single matrix after reading data from a excel file ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
rashmi am
am 18 Mai 2015
Kommentiert: Star Strider
am 18 Mai 2015
[num,txt]=xlsread(filename,sheet) here num contains all numerical value and nan (not a number)and txt contains all the texts.now ,how can i replace these nan elements in num by the elements of txt?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 18 Mai 2015
The easiest way (not having your file to test this on) is to add a third output to xlsread:
[num,txt,raw]=xlsread(filename,sheet)
The ‘raw’ output should have everything just as the function imported it.
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!