How to avoid variable name warnings when using filenames as variable names

조회 수: 630 (최근 30일)
Hi,
I have almost got the orange errors at the side of my script down to zero but have one error that keeps coming up: "Warning: Variable names were modified to make them valid MATLAB identifiers. The original names are saved in the VariableDescriptions property. "
Using isvarname I have traced the error to the excel filenames my script reads in and then processes (I need to keep the filenames as is). There was a decimal point which I can exclude, but I cannot exclude the '.xlsx', or do not know how to. Below is a simple example, can anyone show how this file could be read in with a variable title 'stuff1_2_3'?
Best regards
Steve
close all
clear all
clc
s='stuff1_2_3.xlsx'
isvarname(s)
  댓글 수: 3
Stephen Devlin
Stephen Devlin 2017년 10월 11일
The filename contains the testing information particular to that trial and is used as a string to annotate the graphs, otherwise the graphs would mean nothing to those looking at them. The script works it just comes up with some orange errors.
Cedric
Cedric 2017년 10월 11일
편집: Cedric 2017년 10월 11일
You are using tables, so I understand that you have limited control on the import. I am not using tables (I don't think that they are mature enough yet) so I don't know how to manage this properly using them.
Generally though, we avoid using inputs as field names, precisely because they are likely not to be compatible with field name requirements. Instead, we use a cell array of e.g. column headers that matches e.g. the number of columns of a numeric array or a cell array, and we use the headers just for display (e.g. plot titles). when we are dealing with advanced users and we want to provide e.g. a struct with field names that correspond to column headers, we "normalize" the headers so they become compatible with field name requirements. There are MATLAB functions for this, but it is easy to produce using a few operations on strings.

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

채택된 답변

Jeremy Hughes
Jeremy Hughes 2017년 10월 9일
The warning you're seeing comes from READTABLE; it's probably not related to the names of your files (unless those are being stored in the XLSX file).
Find the call to readtable, and then add the parameter 'ReadVariableNames',false ... e.g.
t = readtable(filename,'ReadVariableNames',false);
This will make the warning go away, but I don't know if that's the behavior you want--the variable names of the table will look like 'Var1', 'Var2', ... etc..
Hope this helps, Jeremy
  댓글 수: 7
Maximilian Prilmueller
Maximilian Prilmueller 2021년 4월 28일
You might want to try it with the 'VariableNamingRule', 'preserve' option. This will probably mess up your column names a bit, but will get rid of the warnings. And a messed up name is still better than none, I guess.
Zeinab Alaraji
Zeinab Alaraji 2022년 5월 18일
Thanks , Thats worked correvctly , PreservedNamedVaraible to be true

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

추가 답변 (3개)

Jan
Jan 2017년 10월 9일
The name of an Excel file need not and should not be a valid Matlab name.
s = 'stuff1_2_3.xlsx'
Data = xlsread(s);
Now Data contains the contents of the Excel file, which name is stored in the variable s. I cannot imagine why you want to use the file name as a variable.
Please show us the code, which causes the warning.
  댓글 수: 2
Stephen Devlin
Stephen Devlin 2017년 10월 10일
Hi Jan,
The filename is the only way the persons carrying out the tests can associate operational data with the results data, so a typical files name might be something like P101_10V_10KHZ_J231_SF0.98
The SF0.98 also caused the same warning, so I took the decimal point out, this halved the numbers of warnings. The script is to process a batch of excel files in a loop, it works fine but the warning is just annoying.
Jan
Jan 2017년 10월 10일
If the filename is important, store it - but not in name of the variable. It is prone to errors and inefficient to use dynamic names for variables and the important information is simply to hard to access. Prefer:
FileName = 'stuff1_2_3.xlsx'
Measurement.Data = xlsread(s);
Measurement.Name = FileName;
Like in the real world: You do not include the weight, driving license ID and birthday in your name also.

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


john greene
john greene 2022년 6월 10일
tables have a header row. the readtable command reads in the table and the header row text is assigned to variables in matlab. if the text entries in your header row are not valid matlab names, matlab automatically gives the invalid ones new names that are valid as a matlab variables. for example, if one of your header row labels has a question mark (?) in it, it will cause matlab to change the variable name and issue the warning you're asking about.

Weifu
Weifu 2018년 3월 20일
It probably because the item title does not compliant with the variable rule and you need to modify the names. i.e "item 1" is not valid and it need to change to item1 or item_1.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by