Removing first character from an imported excel heading

조회 수: 2 (최근 30일)
Frank Lehmann
Frank Lehmann 2022년 8월 27일
댓글: Frank Lehmann 2022년 8월 30일
I cannot seem to remove the first character from an imported table from an excel spreadsheet it is on the header and the table variable names are the same except for the mandatory “x” as the first letter all other info is imported OK. I tried aligning left centre and right to no avail from excel but can’t seem to get rid of the dreaded “x” any ideas?
  댓글 수: 3
dpb
dpb 2022년 8월 27일
Probably your Excel column name is not an allowable MATLAB variable name which has to be modified to be so -- see readtable optional name-value pair 'VariableNamingRule' and try
tData=readtable('YourFile',...otherparameters...,'VariableNamingRule','preserve');
to keep the existing Excel variable name. This require ML release R2019b or later to be available.
I personally don't much recommend using it, however, over fixing the original name to something that is a legal MATLAB variable name because if you do use one of these, you've got to enclose it in quotes or only use it as the content of a variable and indirect addressing everywhere you want to use it. Grossly inconvenient for just a (generally trivial) display sweetener. "The cure is worse than the disease..."
Frank Lehmann
Frank Lehmann 2022년 8월 30일
Thanks everyone, figured it out its because I am using R2018a V and Matlab doesn't recoginise the first character the original spreadsheet heading started with a "2" where as I should have used "Two" instead ie does not accept a digit in lieu of a character. All good now.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Export to MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by