How do I reshape a dataset?

2 visualizaciones (últimos 30 días)
andrew
andrew el 14 de Feb. de 2014
Comentada: andrew el 14 de Feb. de 2014
I have a 288x35 dataset, how do I make it into 35x288?

Respuestas (2)

Thomas
Thomas el 14 de Feb. de 2014
Editada: Thomas el 14 de Feb. de 2014
a= rand (2,4)
size(a)
b=a'
size(b)
Is this what you are looking for ?
or
b= reshape(a,4,[]);
in your case
reshape(a,35,[])
if a is 288x35

Wayne King
Wayne King el 14 de Feb. de 2014
Editada: Wayne King el 14 de Feb. de 2014
When you say dataset, do you just mean a matrix?
X = randn(288,35);
Y = X.';
If the elements are all real-valued, just
Y = X';
or do you mean the transpose of a MATLAB dataset?
  3 comentarios
Wayne King
Wayne King el 14 de Feb. de 2014
If you are talking about numerical data of size 288x35, then assume the data are called data
data = data';
andrew
andrew el 14 de Feb. de 2014
I tried that it says there are too many output argument errors, I assume this is an issue because there are some strings mixed with some numbers?

Iniciar sesión para comentar.

Categorías

Más información sobre White 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