フィルターのクリア

How to avoid writing a for loop in A\b when A and b are different dimensions

2 ビュー (過去 30 日間)
Matthew Kehoe
Matthew Kehoe 2023 年 2 月 18 日
コメント済み: Matt J 2023 年 2 月 18 日
I am currently solving where A is a 3d complex array of dimension and b is a 2d real array of dimension . In order to do this, I create a single for loop which calls linsolve() times.
Could I avoid writing this for loop so that I wouldn't have to spend the extra computation calling linsolve() times? It appears that the pagemldivide() function might be one way of doing this.
clear all; close all;
% Original Method
Nx = 32;
A = complex(rand(Nx+1,Nx+1,Nx),rand(Nx+1,Nx+1,Nx)); % A is a 3D complex array
b = rand(Nx+1,Nx); % b is a 2D real array
soln = zeros(Nx,Nx+1); % the resulting solution will be a 2d complex array
for j=1:Nx
prob = linsolve(A(:,:,j),b(:,j)); % A\b
soln(j,:) = prob.'; % Size (Nx,Nx+1)
end
% New Method
soln_tilde = pagemldivide(A(:,:).',b(:)); % Size (Nx+1,1)
Is there a way of using pagemldivide() (or a seperate Matlab function) to avoid writing a for loop and get the same resulting solution of size ?

採用された回答

Matt J
Matt J 2023 年 2 月 18 日
編集済み: Matt J 2023 年 2 月 18 日
soln=pagemldivide(A,reshape(b,[],1,Nx));
soln=soln(:,:).';
  2 件のコメント
Matthew Kehoe
Matthew Kehoe 2023 年 2 月 18 日
Wow! I think there is an extra comma after the second colon. Auto-reshaping b to the same size as A through is an amazing Matlab feature.
Matt J
Matt J 2023 年 2 月 18 日
Wow! I think there is an extra comma after the second colon.
There was, but I fixed it. It should work now. If it does, please Accept-click the answer.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperating on Diagonal Matrices についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by