How to create a table name using a string variable?

39 次查看(过去 30 天)
Hi,
How can I use a string variable for a table name?
eg.:
-----------------------------
T = 'ThisShouldBeMyTableName';
VariableNames = {'StartCash','EndDate'};
T = table(input_values.StartCash, input_values.EndDate, 'VariableNames',VariableNames);
-----------------------------
The table which is create should be named "ThisShouldBeMyTableName" not "T".
Thank you
  3 个评论
Mustafa Calcuttawala
@stephen Can you please elaborate what you mean by indexing? How exactly do I use this indexing?
Walter Roberson
Walter Roberson 2020-6-3
Mustafa Calcuttawala: please read the material at the link that Stephen posted. It shows a number of different possibilities.

请先登录,再进行评论。

采纳的回答

Gabor
Gabor 2019-3-4
I guess I will just use a cell which I will be store the the variable for the "name that should be" and the table itself too...
Thank you
  1 个评论
Steven Lord
Steven Lord 2019-3-4
Or you could create a struct array with one field that contains your table and name that field using either the struct function or dynamic field names.
thefield = 'snowstorm';
data = magic(4);
structOfTables = struct(thefield, data)
structOfTables2.(thefield) = data

请先登录,再进行评论。

更多回答(2 个)

Walter Roberson
Walter Roberson 2019-3-4

Gabor
Gabor 2019-3-8
Thank you all

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by