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

4 vues (au cours des 30 derniers jours)
taro
taro le 8 Mai 2021
Commenté : taro le 11 Mai 2021
syms x(t) [2 3]
>>
この場合にx(t)の1列目、すなわち
>>
を参照する方法はありますか?
x(t)(:,1)
>>配列のインデックス付けが無効です。
などとなってしまいます。

Réponse acceptée

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

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!