Error using Matlab table command
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Using the first example posted at https://www.mathworks.com/help/matlab/ref/table.html I try to create a Matlab table as follows:
LastName = {'Smith';'Johnson';'Williams';'Jones';'Brown'};
Age = [38;43;38;40;49];
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
BloodPressure = [124 93; 109 77; 125 83; 117 75; 122 80];
T = table(Age,Height,Weight,BloodPressure,...
'RowNames',LastName)
But, instead of the table shown in the example, I get these error messages.
Error using matlab.lang.makeValidName>parseInputs (line 186)
Invalid default value for property 'metaDim' in class 'table':
Reference to non-existent field 'TextType'.
Error in matlab.lang.makeValidName (line 72)
[names, replacementStyle, prefix, TextType] = parseInputs(names, varargin{:});
Error in matlab.internal.tableUtils.makeValidName (line 23)
[validNames, modified] = matlab.lang.makeValidName(names, varargin{:});
Error in matlab.internal.table.tableMetaDim>fixLabelsForCompatibility (line 208)
[labels,wasMadeValid] = matlab.internal.tableUtils.makeValidName(labels,'silent');
Error in matlab.internal.table.tableMetaDim (line 40)
labels = fixLabelsForCompatibility(labels);
1 comentario
Respuestas (1)
Peter Perkins
el 11 de Dic. de 2016
It looks like you're running R2016b. It also looks like you have something wrong with your installation, or something on your path that's shadowing something important. Perhaps something else called "table".
I'd set a breakpoint in matlab.internal.table.tableMetaDim at line 40, and see if you can figure out what's going on. Beyond that, you should probably contact support.
1 comentario
Prateek
el 6 de Mzo. de 2019
I think there seems to be some implementation issues with R2016b. I am getting the same error as stated by AM.
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!