I need some help with a function
이전 댓글 표시
Hi!
So I am trying to make a function named lowerRightQuarter that takes one argument, a matrix, with an even number of rows and columns. The function then returns the lower right quarter of the input matrix as a new matrix. This is what I have so far.
function n=lowerRightQuarter(A)
n=A(2 : 2 : end, 2 : 2 : end);
end
My Page looks like this
%% Lower Right Quarter
A=[1 2 3 4;
5 6 7 8;
0 1 2 3;
4 5 6 7];
lowerRightQuarter(A)
So the out put should be
2 3
6 7
Then after that if I run it again with 2 3; 6 7. I should just get 7.
Please help!.If you would please get me your answer ASAP that would be great!
Thank you so much
Daniel
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Generated Code Interfacing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!