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

25 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Ameer Hamza
Ameer Hamza le 29 Nov 2020
Modifié(e) : Ameer Hamza le 29 Nov 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.

Plus de réponses (1)

KSSV
KSSV le 29 Nov 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

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by