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

 採用された回答

Guillaume
Guillaume 2019 年 10 月 23 日

0 投票

yourtable.Age = yourtable.Rings + 1.5;
by the sound of it. If not, then attach an example of your data as a mat file.

その他の回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 23 日
編集済み: KALYAN ACHARJYA 2019 年 10 月 23 日

0 投票

-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 件のコメント

kav
kav 2019 年 10 月 23 日
thank u for your answer.
but i want to create new column Age with previous column Rings values +1.5.
so my Age column values will be 16.5 8.5 ........
Rings Age= Rings +1.5
15
7
9
10
7
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 23 日
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
kav 2019 年 10 月 23 日
yes got it thank you!
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 23 日
Welcome!

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeTables についてさらに検索

質問済み:

kav
2019 年 10 月 23 日

コメント済み:

2019 年 10 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by