making each column a stand alone variable

Let's assume A=[B C D]
B=[1;2;3;4]
C=[5;6;7;8]
D=[0;4;3;2]
E=A'
how do I automatically make
F=A(:,1)
G=A(:,2)
H=A(:,3)
J=A(:,4)

2 Kommentare

KALYAN ACHARJYA
KALYAN ACHARJYA am 8 Aug. 2019
Error: A size is 4x3 and you are trying to acess A(:,4)??
Stephen23
Stephen23 am 9 Aug. 2019
Bearbeitet: Stephen23 am 9 Aug. 2019

Melden Sie sich an, um zu kommentieren.

Antworten (1)

madhan ravi
madhan ravi am 8 Aug. 2019
Bearbeitet: madhan ravi am 8 Aug. 2019

0 Stimmen

Wanted = num2cell(E,1) % keep it this way, don't think of naming etc, etc...,

Kategorien

Gefragt:

am 8 Aug. 2019

Bearbeitet:

am 9 Aug. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by