How to add another column
Afficher commentaires plus anciens
Hello,
I have a Data table using 9 variables. I want to create new one (Age) using previous column(rings) +1.
how can i do this ? please help.
thank you
Réponse acceptée
Plus de réponses (1)
KALYAN ACHARJYA
le 23 Oct 2019
Modifié(e) : KALYAN ACHARJYA
le 23 Oct 2019
-How to add another column-
In the followig sample code, I have added New_col here
load patients %data file with Matlab
New_col=(1:100)'; %I have added this New_col data as new column in the table
result=table(Age,Gender,Height,New_col)
Hope it helps!
4 commentaires
kav
le 23 Oct 2019
KALYAN ACHARJYA
le 23 Oct 2019
Here I have shown as you want
load patients %data file with Matlab
%New Column=Height+15, here Height is the one column in the table
New_col=Height+1.5; %I have added this New_col data as new column in the table
result=table(Age,Gender,Height,New_col)
kav
le 23 Oct 2019
KALYAN ACHARJYA
le 23 Oct 2019
Welcome!
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!