シンボリック行列の計算に関して
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
シンボリック行列を使用してシンボリック演算をしております.
その際,行列計算の規則を保ちつつ計算する方法が分かりません.
<例>
を計算したいとき
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/356494/image.png)
syms A B
A.' * B
> ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/356497/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/356497/image.png)
A = sym("A", [2 2]);
B = sym("B", [2 1]);
A.' * B;
> ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/356500/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/356500/image.png)
このように要素に展開して計算されます.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/356503/image.png)
よろしくお願いします.
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su 一般の演算 in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!