Why Does eig() Not Throw an Error for Non-Square, Symbolic Input?
2 ビュー (過去 30 日間)
古いコメントを表示
Example:
M = [sym(zeros(2));sym('m',[2 2])];
M(1,1) = 1
eig(M)
But filling in the top partition of M does yield the expected result:
M(1:2,1:2) = sym('n',[2 2])
eig(M)
Bug?
1 件のコメント
採用された回答
Arthi Sathyamurthi
2021 年 5 月 28 日
This bug has been fixed and the updates will be available in the future release.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


