How to split a 3 by 3 matrix into rows and save rows separetly in arrays

4 visualizaciones (últimos 30 días)
I want to store row 1 in ra, row 2 in rb & row 3 in rc.

Respuestas (1)

the cyclist
the cyclist el 16 de Jul. de 2022
ra = NewRange(1,:);
rb = NewRange(2,:);
rc = NewRange(3,:);
Be aware that you may not actually need to do this separation, because you can always just use NewRange(1,:) for the first row, without defining a new variable.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by