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!