how to collect the numerical values of marginal areas in an array????(help immediately)
1 次查看(过去 30 天)
显示 更早的评论
i have matrix of (n * m) i need to collect its numerical values located at its margin(1st row, `1st column, last row and last column). em not geting how to give its size
{
for i = 1:1:n
for j= 1:1:m
----------
-----------
end
end}
it takes all rows and columns of that perticular matrix. plz make its correction.
0 个评论
采纳的回答
Paulo Silva
2011-4-9
m is your array
FirstRow=m(1,:);
LastRow=m(end,:);
FirstColumn=m(:,1);
LastColumn=m(:,end);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!