필터 지우기
필터 지우기

creating a dynamic variable name based on cell array

조회 수: 39 (최근 30일)
Forrest
Forrest 2019년 5월 2일
답변: Gabor 2021년 9월 20일
Hello.
I have a simple problem, and that is that I want to create a variable name, that will store a table I am returning from a function I have previously created.
So I know this is not recommended, but I have a very specific reason I want to do it this way, and I do not want to store these tables I am returning into any type of structure. I have a specific need to assign them into a particular variable name.
My code is below. I would like to be able to assign the last line in that for loop, to the value, which is essentially the first 10 chars of the 'myFileNames' var on each iteration. I.e., the first time through the loop, it will be "H4_AUD_CAD". The next the var name should be "H4_AUD_JPY," and so on.
The first section below labeled, "THIS WORKS, but requires manual input," this works the way I want, but I have to manually input the the data in.
The section below that labeled, "Main Loop of Program to Loop through Each and THIS DOES NOT WORK" does not work, but is what I am aiming for, so that the only thing I need to update manually, is the first code block where I change the size of 'myFileNames,' and add in the additional .csv file I plan on manipulating. There will be dozens of these.
I have attached a zip file of my workspace. The non-working part is uncommented, and the working part is commented out. I have also attached an image I hope helps explain what I am trying to do.
clear all;
close all;
%% ===== Create Array of Data to Manipulate ================
myFileNames = cell(3,1);
myFileNames{1} = 'H4_AUD_CAD_050319.csv';
myFileNames{2} = 'H4_AUD_JPY_050319.csv';
myFileNames{3} = 'H4_USD_CAD_050319.csv';
%% ===== THIS WORKS, but requires manual input ================
fileName = char(myFileNames(1)); %Change this NUMBER HERE.
myChar = char(fileName(1:9) );
H4_AUD_CAD = importFunc(fileName, 2, 10000, myChar ); %Must RENAME VAR name here too
%% ===== Main Loop of Program to Loop through Each and THIS DOES NOT WORK ================
for k = 1:length(myFileNames)
fileName = char(myFileNames(k));
myChar = char(fileName(1:10) );
H4_AUD_CAD = importFunc(fileName, 2, 10000, myChar );
end
  댓글 수: 1
Stephen23
Stephen23 2019년 5월 2일
편집: Stephen23 2019년 5월 2일
"'I have a specific need to assign them into a particular variable name"
Curious. What exactly is this "specific need" that requires dynamically named variables?

댓글을 달려면 로그인하십시오.

채택된 답변

per isakson
per isakson 2019년 5월 2일
편집: per isakson 2019년 5월 2일
"I know this is not recommended"
This is one way. I think it looks a bit cleaner and is easier to use than eval()
assign( myChar, importFunc(fileName, 2, 10000, myChar ) )
Example
>> myChar = 'variable_name';
>> assign( myChar, magic(4) )
>> variable_name
variable_name =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
where
function assign( varargin )
% assign( variable_name, value )
% for k = 1:11, assign( sprintf( 'var%d', k ), k ), end
switch nargin
case { 2 }
if isvarname( varargin{ 1 } )
Name = varargin{ 1 };
else
error( ['poi: First input argument, ', ...
inputname(1), ' must be a legal name'] ),
end
Value = varargin{ 2 };
otherwise
error( 'poi: Wrong number of input arguments' ),
end
assignin( 'caller', Name, Value );
end

추가 답변 (1개)

Gabor
Gabor 2021년 9월 20일
T=table;
Date=datetime(2014,12,31);
eval(['Dynamic_var_name_' datestr(Date,'mm_dd_yyyy') '=T;']);
This is how you name dynamically a variable or a table or anything regardless if it is recommended or not.

카테고리

Help CenterFile Exchange에서 Function Creation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by