Can anybody help me?
5 ビュー (過去 30 日間)
古いコメントを表示
[N,V]=eig(A), gives eigen decomposition of matrix A. How to find the eigen decomposition of all matrices in a cell of size 1x100, using a loop ?
0 件のコメント
回答 (1 件)
GEEVARGHESE TITUS
2017 年 4 月 8 日
use cellfun
[n v]=cellfun(@(x) eig(x),c,'UniformOutput',false)
where c is your input cell and n and v are also cell
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!