making each column a stand alone variable

3 visualizzazioni (ultimi 30 giorni)
DARLINGTON ETAJE
DARLINGTON ETAJE il 8 Ago 2019
Modificato: Stephen23 il 9 Ago 2019
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 Commenti
KALYAN ACHARJYA
KALYAN ACHARJYA il 8 Ago 2019
Error: A size is 4x3 and you are trying to acess A(:,4)??

Accedi per commentare.

Risposte (1)

madhan ravi
madhan ravi il 8 Ago 2019
Modificato: madhan ravi il 8 Ago 2019
Wanted = num2cell(E,1) % keep it this way, don't think of naming etc, etc...,

Categorie

Scopri di più su Programming in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by