Variable for table are in one row and not one column. How do I turn it or save a variable in one column?

26 visualizaciones (últimos 30 días)
Very Basic but i just cant find the answer to my problem. Looking for 2 Solutions.
  1. How do I safe data in one column and not one row?
  2. How can I change the orientation in the table even if my varibales are in one row?
data = [1:number]
t = table(data,'VariableNames',{'Set number'})
Results:
Set Number
1 2 3
What I am looking for:
Setnumber
1
2
3

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 29 de Nov. de 2020
Editada: Ameer Hamza el 29 de Nov. de 2020
You can use the transpose operator
data = (1:number).';
or indexing
data = 1:number;
data = data(:)
or reshape()
data = reshape(1:number, [], 1)
To only change the orientation in the table
data = 1:number
t = table(data.','VariableNames',{'Set number'})
or any of the above mentioned options.

Más respuestas (1)

KSSV
KSSV el 29 de Nov. de 2020
number = 3 ;
data = [1:number]'
data = 3×1
1 2 3
t = table(data,'VariableNames',{'Set number'})
t = 3x1 table
Set number __________ 1 2 3

Categorías

Más información sobre Structures en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by