How to split 2*2 matrix into individual elements

I want to know the command for splitting the 2*2 matrix into individual elements.

1 comentario

Where M is your matrix:
TL = M(1,1);
TR = M(1,2);
BL = M(2,1);
BR = M(2,2);
Note that splitting data up usually makes the data harder to work with and the code less generalized.

Iniciar sesión para comentar.

Respuestas (1)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 18 de Abr. de 2020

Respondida:

el 18 de Abr. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by