Azzera filtri
Azzera filtri

I have 135987 * 69 table. I want to convert all negative values to NaN. Any Suggestions?

6 visualizzazioni (ultimi 30 giorni)
I have 135987 * 69 table. I want to convert all negative values to NaN. Any Suggestions?

Risposte (1)

Guillaume
Guillaume il 9 Lug 2018
tablecontent = yourtable{:, :};
tablecontent(tablecontent < 0) = NaN;
yourtable{:, :} = tablecontent;
This assumes that every variable in the table is numeric and scalar.

Categorie

Scopri di più su Tables in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by