splitting a matrix into vectors

90 Ansichten (letzte 30 Tage)
ganesh karuppasamy
ganesh karuppasamy am 27 Jun. 2020
Beantwortet: Matt J am 27 Jun. 2020
how can i split a matrix int row or column vectors with out looping condition help me some body please
suppose i have a matrix a=[123;456;789];
then i want to store the vectors in seperrately as a1=[1 2 3] or a1=[1;2;3]
a2=[4 5 6],a3=[7 8 9]
i know using loop this wil easy but with out loops is there any possible way

Antworten (2)

Alan Stevens
Alan Stevens am 27 Jun. 2020
Like so:
A = [1 2 3; 4 5 6; 7 8 9];
A1 = A(1,:), A2 = A(2,:), A3 = A(3,:)

Matt J
Matt J am 27 Jun. 2020

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by