How do I replace [ ] in an array with 0's
조회 수: 74 (최근 30일)
이전 댓글 표시
How can i replace the [] in the pathrisk field with 0's?
Thanks for your help!
댓글 수: 0
채택된 답변
추가 답변 (1개)
Jos (10584)
2014년 1월 15일
편집: Jos (10584)
2014년 1월 15일
If I am not mistaken, the variable pathrisk is a cell array with some empty cells?
pathrisk = {1 [] 5 3 [] [] 9} % example data
tf = cellfun('isempty',pathrisk) % true for empty cells
pathrisk(tf) = {0} % replace by a cell with a zero
댓글 수: 4
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!