シンボリック行列の計算に関して
2 次查看(过去 30 天)
显示 更早的评论
シンボリック行列を使用してシンボリック演算をしております.
その際,行列計算の規則を保ちつつ計算する方法が分かりません.
<例>
を計算したいとき
![](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 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 一般の演算 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!