Borrar filtros
Borrar filtros

Removing first character from an imported excel heading

1 visualización (últimos 30 días)
Frank Lehmann
Frank Lehmann el 27 de Ag. de 2022
Comentada: Frank Lehmann el 30 de Ag. de 2022
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 comentarios
dpb
dpb el 27 de Ag. de 2022
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 el 30 de Ag. de 2022
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.

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by