What does this code compute?
조회 수: 4 (최근 30일)
이전 댓글 표시
what does this code compute? mask ( inside ) = ones ( size ( inside ) )
댓글 수: 0
채택된 답변
Titus Edelhofer
2015년 2월 13일
It set's all entries in mask, where inside is true, to one. I guess
mask(inside) = 1;
should do the same in fact.
Titus
댓글 수: 2
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!