How to change nonzero values to 1 within a table?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to change nonzero values to '1' within a table? for all columns at once.
0 Commenti
Risposta accettata
Ridwan Alam
il 19 Dic 2019
tempTable = table2array(myTable);
tempTable(tempTable~=0)=1;
myTable = array2table(tempTable);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Tables 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!