error using preallocation for table using size option in R2023b
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
vidyasagar g
am 23 Mär. 2024
Kommentiert: Dyuman Joshi
am 24 Mär. 2024
h=table('Size',[ 2212 5],"VariableTypes",{'double','double','double','double','double'});
Error using table
You might have intended "VariableTypes" to specify a parameter name. However, the table constructor requires parameter names to be
specified as character vectors. Use table(..., VariableTypes=Value) or table(..., 'VariableTypes', Value) instead.
0 Kommentare
Akzeptierte Antwort
Dyuman Joshi
am 23 Mär. 2024
Bearbeitet: Dyuman Joshi
am 23 Mär. 2024
Use single quotation marks around the VariableTypes arguement instead of double quotation marks -
% v v
h=table('Size',[2212 5],'VariableTypes',{'double','double','double','double','double'})
Reference - 2nd section of Description tab in the documentation of table - https://in.mathworks.com/help/matlab/ref/table.html#d126e1657554
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!