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

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

Risposta accettata

Hernia Baby
Hernia Baby il 8 Mag 2021
formula関数でシンボリック関数の本体を返せば可能です。
syms x(t) [2 3];
X = formula(x);
X(:,1)
ans =
x1_1(t)
x2_1(t)
  1 Commento
taro
taro il 11 Mag 2021
ありがとうございます!

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!