construct array name in script
1 次查看(过去 30 天)
显示 更早的评论
New to MatLab by a month or so. I've looked through blogs and can't find and answer to this. I need to: 1) open a *.txt file which is comma delimited Nx3 'array' (I'm using uigetfile() for this) 2) pass the values to a Matlab array structure (I'm using csvread() for this) 3) Set the array structure name to the same as the name of the input file minus .txt (near is my problem) 4) write the array with the internal array name set to the input file name (I'm using save() for this)
My problem is I don't know how to construct the array name in script to pass onto the array written using the save() command.
Below is an elaboration with script segments:
% read a file into a variable selecting all files with a string '_element.txt' DbTitle = 'Generic title text' HeElements = uigetfile('*_element.txt', DbTitle) % HeElement is now a character string 'random_element.txt % remove '.txt' from the string HeLength = length(HeElements)-4 HeArrayName = strcat(HeElements(1:HeLength)) % HeArrayName now contains the filename without the '.txt' extension. This is the name I want assigned to the array eventually being saved to file. % Read array into variable HeArray = csvread(HeElements) % save array to a file save(HeFilename, 'HeArray')
The problem is the file that is saved, HeFileName, containes the proper array elements but with a literal name of the array being 'HeArray' with no quotes. I want the filename and array name to be the same, the string associated with the filename HeFileName without the extention ('He_element').
Thanks,
Alex
1 个评论
Evan
2014-8-15
编辑:Evan
2014-8-15
Formatted code:
% read a file into a variable selecting all files with a string '_element.txt'
DbTitle = 'Generic title text'
HeElements = uigetfile('*_element.txt', DbTitle)
% HeElement is now a character string 'random_element.txt
% remove '.txt' from the string
HeLength = length(HeElements)-4 HeArrayName = strcat(HeElements(1:HeLength))
% HeArrayName now contains the filename without the '.txt' extension.
% This is the name I want assigned to the array eventually being saved to
% file.
% Read array into variable
HeArray = csvread(HeElements)
% save array to a file
save(HeFilename, 'HeArray')
采纳的回答
Jos
2014-8-16
Hi Alex,
I think the following code using eval will do what you want
% read a file into a variable selecting all files with a string '_element.txt'
DbTitle = 'Generic title text'
HeFilename = uigetfile('*_element.txt', DbTitle)
% remove '.txt' from filename to get array name
HeArrayName = HeFilename(1:end-4);
% Read array into variable
eval([HeArrayName '= csvread(HeFilename)'])
% Save array to '.mat' file
eval(['save ' HeArrayName '.mat ' HeArrayName])
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!