Extracting symbolic values from symbolic matrix
조회 수: 8 (최근 30일)
이전 댓글 표시
I have a long code which has syms like q1(t) q2(t) ...
I have a 3x1 matrix which is in format like: n1=a1*q3(t)
a2*sin(q2(t)
0
How can i call the second row? Because when i try to call it like n1(2,1), algorithm perceive it as i attend a value to t.
댓글 수: 0
채택된 답변
Torsten
2023년 1월 12일
syms t q2(t) q3(t) a1 a2
n1 = [a1*q3(t);a2*sin(q2(t));0];
n1(2,1) % extract element (2,1)
n1(2,:) % extract complete 2nd row
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!