Removing first character from an imported excel heading
조회 수: 2 (최근 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
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..."
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Export to MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!