Effacer les filtres
Effacer les filtres

construct array name in script

1 vue (au cours des 30 derniers jours)
Alex
Alex le 15 Août 2014
Commenté : Alex le 18 Août 2014
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 commentaire
Evan
Evan le 15 Août 2014
Modifié(e) : Evan le 15 Août 2014
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')

Connectez-vous pour commenter.

Réponse acceptée

Jos
Jos le 16 Août 2014
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])
  1 commentaire
Alex
Alex le 18 Août 2014
Thanks Jos! It worked perfectly! Being new to much of the functionality in MatLab, I'll have to review it to understand exactly why it worked. Apparently, eval can be used for some good:)
Thanks,
Alex

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by