Should Behavior of sub2ind() be Different for Symbolic and Numeric Inputs?
이전 댓글 표시
maxrows = 1; r = 1; a = 1; c = 1; ii = false;
D = zeros(3,3,maxrows) % D is a double
D(sub2ind([3,3,maxrows],a(ii),a(ii),r(ii))) = c(ii)
D = zeros(3,3,maxrows,'sym') % now D is a sym
D(sub2ind([3,3,maxrows],a(ii),a(ii),r(ii))) = c(ii)
Why does sub2ind() change the dimension of D in the latter case?
댓글 수: 1
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


