How to change nonzero values to 1 within a table?
11 ビュー (過去 30 日間)
古いコメントを表示
How to change nonzero values to '1' within a table? for all columns at once.
0 件のコメント
採用された回答
Ridwan Alam
2019 年 12 月 19 日
tempTable = table2array(myTable);
tempTable(tempTable~=0)=1;
myTable = array2table(tempTable);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!