Horzcat error, attempting to display a matrix 3x11
조회 수: 1 (최근 30일)
이전 댓글 표시
R=[148;36;49;-45;166] % 5x1 double
Rvx= [ 1 0 0; 0 cos(R) sin(R); 0 -sin(R) cos(R)];
The output can have zeros where there is a void. I believe I understand the error but don't know how to fix it.
댓글 수: 0
채택된 답변
Dyuman Joshi
2023년 9월 13일
R=[148;36;49;-45;166] % 5x1 double
Rvx= [1 zeros(1,2*numel(R)); 0 cos(R)' sin(R)'; 0 -sin(R)' cos(R)']
댓글 수: 2
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!