Check all values in a table if any is "NAN"
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Zeynab Mousavikhamene
am 8 Okt. 2019
Beantwortet: the cyclist
am 8 Okt. 2019
I have a table that has multiple column and rows. I want to say if any value in the table was "NAN" then change the value from "NAN" to 1.
Any suggestion?
2 Kommentare
Rik
am 8 Okt. 2019
This is not your first question. What have you tried so far on your own? And are you aware of the isnan function?
Akzeptierte Antwort
the cyclist
am 8 Okt. 2019
This may work for your case
tbl = fillmissing(tbl,'constant',1);
assuming the NaNs are the only values that count as missing for you.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!