Effacer les filtres
Effacer les filtres

what are the indices of the middle element of a matrix

5 vues (au cours des 30 derniers jours)
Weisz Thomas
Weisz Thomas le 1 Déc 2018
Commenté : Walter Roberson le 3 Déc 2018
Write a function called zero_middlethat takes an n-by-mmatrix
as an input where both nand mare odd numbers (the function does not have
to check the input). The function returns the input matrix with its center
element zeroed out.

Réponse acceptée

Walter Roberson
Walter Roberson le 1 Déc 2018
hint: end/2+1/2
  4 commentaires
Weisz Thomas
Weisz Thomas le 3 Déc 2018
i am still a begginer and i have tried to follow your hints but now i have removed the output argument from my function because i don't know what value to assign to it. this is how my function looks:
function zero_middle(h)
[r,c]=size(h);
for ii=1:r
for jj=1:c
if mod(r,2) && mod(c,2)
h(end/2+1/2)=0;
end
end
end
end
please help me perfect it.
Walter Roberson
Walter Roberson le 3 Déc 2018
output is h
you do not need any loop or any tests.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Produits


Version

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by