Effacer les filtres
Effacer les filtres

how to collect the numerical values of marginal areas in an array????(help immediately)

1 vue (au cours des 30 derniers jours)
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.

Réponse acceptée

Paulo Silva
Paulo Silva le 9 Avr 2011
m is your array
FirstRow=m(1,:);
LastRow=m(end,:);
FirstColumn=m(:,1);
LastColumn=m(:,end);

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by