Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to use kron command to form a 2D matrix when 1D is known

1 回表示 (過去 30 日間)
Jiali
Jiali 2021 年 6 月 15 日
閉鎖済み: Jiali 2021 年 7 月 15 日
Dear community,
I would like to use Kron command to form a 2D stencil grid when 1D matrix of row or column is known. For example, the below code is shown:
Nx=10;
Ny=8;
% every row or column in 1D should be in the below format
A=[-1*ones(Nx,1), ones(Nx,1)];
DeX=spdiags(A,[0 1],Nx,Nx);
DeX(Nx,Nx-1)=1;
B=[-1*ones(Ny,1),ones(Ny,1)];
DeY=spdiags(B,[0 1],Ny,Ny);
DeY(Ny,Ny-1)=1;
DeX_2D=kron(eye(Ny),DeX);
DeY_2D=kron(DeY,eye(Nx));
Is my understanding correct? Could you please lend me a hand?
Regards,
Jiali

回答 (0 件)

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by