Can I calculate the inverse of a matrix using arrayfun?

1 回表示 (過去 30 日間)
Benson Gou
Benson Gou 2021 年 6 月 25 日
コメント済み: Benson Gou 2021 年 6 月 29 日
Dear All,
I have a sparse matrix A. I want to calculate its inverse. I used the following way to calculate invA.
invA = A \ speye(size(A));
My matrix size is 3000 by 3000. I found it took me 1.3 seconds to get invA. It is longer than I expected.
I am wondering if I could use arrayfun to calculate invA. The idea is to calculate each column in invA by invA(:,i) = A \ ei, where ei is a zero column vector except its ith element is 1.0.
I tried the following code to implement the above idea:
invA = arrayfun(@(x) A\x ,speye(size(A,1)));
But I got error message.
Thanks a lot.
Benson
  1 件のコメント
Matt J
Matt J 2021 年 6 月 25 日
I don't see how arrayfun could help, unless this is on the GPU.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2021 年 6 月 25 日
編集済み: Walter Roberson 2021 年 6 月 25 日
invA = cell2mat(arrayfun(@(C) A\sparse(C,1,1,size(A,1),1), 1:size(A,2), 'uniform', 0))
I would be surprised if it is faster.
  8 件のコメント
Benson Gou
Benson Gou 2021 年 6 月 29 日
Hi, Walter,
I do not have the Image Processing Toolbox. So I cannot run decompose(A).
But the goal that I want to obtain the inverse of A is becaus I need to find out the nonzero elements in invA. So I do not know if decompose(A) is able to be useful for my case.
Thanks a lot.
Benson
Walter Roberson
Walter Roberson 2021 年 6 月 29 日

サインインしてコメントする。

その他の回答 (1 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 6 月 25 日
編集済み: Sulaymon Eshkabilov 2021 年 6 月 25 日
In fact, you can employ arrayfun for the matric inverse calc, e.g.:
tic;
iA =arrayfun(@inv,A);
toc;
Note that arrayfun is not the best option and does not take the sparse matrix.
Just direct inv() is the fastest so far.
In fact, for solving linear systems, to compute the inverse is not advised.
  4 件のコメント
Walter Roberson
Walter Roberson 2021 年 6 月 25 日
By the way, you cannot apply arrayfun() directly to a sparse matrix.
Benson Gou
Benson Gou 2021 年 6 月 29 日
Hi, Walter,
Yes, the decomposition is faster than \ operator. Thanks a lot.
Benson

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSparse Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by