Borrar filtros
Borrar filtros

) Write a function centervalue(M) that returns the value of the central element of matrix M. You may assume that M has an odd number of rows and columns. Have centervalue call your function halfway. >> centervalue(magic(5)) ans = 13

1 visualización (últimos 30 días)
Plz help!!
  4 comentarios

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 20 de Sept. de 2018
Editada: KALYAN ACHARJYA el 20 de Sept. de 2018
% Please note center value for odd square matrics only % Following code for all square and non-square also
function centre_value=centervalue(M)
[rows colm]=size(M);
center_value=M(round(rows/2),round(colm/2));
end

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by