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!