A=rand(100);
tic;
invA=inv(A);
toc;
Elapsed time is 0.405422 seconds.
Matlab矩阵求逆
本文演示了使用Matlab进行100x100矩阵的求逆操作,并记录了整个计算过程所消耗的时间为0.405422秒。
A=rand(100);
tic;
invA=inv(A);
toc;
Elapsed time is 0.405422 seconds.
1990
2万+

被折叠的 条评论
为什么被折叠?