Extracting symbolic values from symbolic matrix

4 ビュー (過去 30 日間)
Mustafa Duran
Mustafa Duran 2023 年 1 月 11 日
回答済み: Torsten 2023 年 1 月 12 日
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.

採用された回答

Torsten
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)
ans = 
n1(2,:) % extract complete 2nd row
ans = 

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by