シンボリック関数を使​用したシンボリック行​列の要素を参照する方​法

syms x(t) [2 3]
>>
この場合にx(t)の1列目、すなわち
>>
を参照する方法はありますか?
x(t)(:,1)
>>配列のインデックス付けが無効です。
などとなってしまいます。

 Accepted Answer

Hernia Baby
Hernia Baby on 8 May 2021

0 votes

formula関数でシンボリック関数の本体を返せば可能です。
syms x(t) [2 3];
X = formula(x);
X(:,1)
ans =
x1_1(t)
x2_1(t)

1 Comment

taro
taro on 11 May 2021
ありがとうございます!

Sign in to comment.

More Answers (0)

Categories

Products

Release

R2021a

Asked:

on 8 May 2021

Commented:

on 11 May 2021

Community Treasure Hunt

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

Start Hunting!