I wan to create a 3x3 matrix and this matrix needs to contains first 3 raws and last 3 columns of other matrix which is unknown.

조회 수: 2 (최근 30일)
I wan to create a 3x3 matrix and this matrix needs to contains first 3 raws and last 3 columns of other matrix which is unknown. How can i do that ? Can you help me about it ?

답변 (1개)

Mitchell Thurston
Mitchell Thurston 2021년 10월 13일
With the original larger matrix you want the rows and columns from being "A" and the resulting 3x3 being "B",
A = B(1:3, ... % to specify first 3 rows
end-2:end); % to specify last 3 columns
Since I'm assuming you want this to be a function, and B could be anything (including a matrix less than 3x3, it would be a good idea to have an error check.
function A = first3last3(B)
m,n = size(B);
if (m<3) || (n<3)
error('Input matrix is improper size');
end
A = B(1:3, n-2:n);
end

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by