How to create a table name using a string variable?

조회 수: 60 (최근 30일)
Gabor
Gabor 2019년 3월 4일
댓글: Walter Roberson 2020년 6월 3일
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
Mustafa Calcuttawala 2020년 6월 3일
@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