Searching for part of variable name

153 次查看(过去 30 天)
I am working with the fileEnsembleDatastore tool from the predictive maintenance toolbox.
In this, you need to list DataVariables, ConditionVariables and SelectedVariables.
The data I am working with is in .mat format, each file containing 4 variables:
I want to use each variable, but only the suffix as the start of each variable name is different from file to file.
E.g.
ensembleTrain = fileEnsembleDatastore(fileLocation, fileExtension);
ensembleTrain.ReadFcn = @readBearingData;
ensembleTrain.DataVariables = ["BA"; "DE"; "FE"; "RPM"];
ensembleTrain.ConditionVariables = ["label";"file"];
ensembleTrain.WriteToMemberFcn = @writeBearingData;
ensembleTrain.SelectedVariables = ["label"; "file"; "BA"; "DE"; "FE"; "RPM"]
%I'm trying to use characters that are common between the variable names
Edit: How do I search for variables with names that include parts of the name, i.e. BA, DE etc.

采纳的回答

Adam Danz
Adam Danz 2020-5-4
I don't see a question in your query. If you've got a list of variable names and you're looking for partial matches, check out the contains() function or if you need something for rigorous, regexp().
  1 个评论
Adam Danz
Adam Danz 2020-5-5
I haven't worked with fileEnsembleDatastore but if you can get a list of variable names, you can use my answer to solve the problem.
A typical way of listing all variable names in the current workspace is,
vars = who();
then,
TF = contains(vars, 'DE_time');
vars(TF)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Manage System Data 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by