How do I convert a 3x1 cell to a 1x3

81 visualizzazioni (ultimi 30 giorni)
Ciaran OReilly
Ciaran OReilly il 24 Giu 2021
Risposto: millercommamatt il 24 Giu 2021
I have a 1x3 cell, or and need to change this to a 3x1.
How do I do this??

Risposte (2)

Mouhamed Niasse
Mouhamed Niasse il 24 Giu 2021
Hello,
In case it's a cell array, just transpose it. For example:
>> A={14; 2; 4}
A =
3×1 cell array
{[14]}
{[ 2]}
{[ 4]}
>> A=A'
A =
1×3 cell array
{[14]} {[2]} {[4]}

millercommamatt
millercommamatt il 24 Giu 2021
The transposition operator will work.
a={1,2,3}; % 1x3 cell
a = a'; % a now a 3x1 cell
a = a'; % a is a 1x3 cell again

Categorie

Scopri di più su Data Types 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