Error using num2cell Too many input arguments.

1 visualización (últimos 30 días)
Alexandra Philip
Alexandra Philip el 8 de Jul. de 2020
Editada: Adam Danz el 13 de Jul. de 2020
I am using the app designer and one of the callbacks, I receive an error in the code:
Error using num2cell
Too many input arguments.
for this line of code:
data=num2cell(app.AccelSNEditField,app.degEditField,...
app.degEditField_2,app.degEditField_3,app.degEditField_4,app.EditField,app.EditField_2,...
app.EditField_3,app.EditField_4);
I am intending to use the code to display within uitable with the data inputted by the user using the Edit fields. I first used:
value = app.TestDateDatePicker.Value;
Testdate = cellstr(datestr(value));
Then used the following code to create the uitable figure:
ATdata=[Testdate data];
ATdata=uitable(uifigure,'ColumnName',{'Accel S/N'; 'Test date' ;'Accel_0' ;'Accel_90'; 'Accel_180'; 'Accel_270';...
'Temp_0' ;'Temp_90'; 'Temp_180' ;'Temp_270'},'Data',ATdata);
Any suggestions to correct the error?
  3 comentarios
Alexandra Philip
Alexandra Philip el 8 de Jul. de 2020
I am trying to use whatever the inputs in the Edit Fields are to be placed in the uitable. I tried to see if I need to convert to cell array as previously without the conversion I received this error:
Error using uitable Values within a cell array must be numeric, logical, or char
Rik
Rik el 8 de Jul. de 2020
I don't understand either your goal or your process. Please try breaking it down into smaller steps: what data do you have, and where do you want to put it?

Iniciar sesión para comentar.

Respuestas (1)

Adam Danz
Adam Danz el 8 de Jul. de 2020
I'm guessing that the edit field all contain either scalar numeric values or row vectors of numeric values. If that's the case, and if you're horizontally concatenating those values, you just need to enclose the values in square brackets [ ].
data=num2cell([...
app.AccelSNEditField,...
app.degEditField,...
app.degEditField_2,...
app.degEditField_3,...
app.degEditField_4,...
app.EditField,...
app.EditField_2,...
app.EditField_3,...
app.EditField_4, ...
]);
This should result in a 1xn cell array of scalar numeric values.
It's not clear what you want to do with those values.
If you have an existing UI table named ATdata and you want to vertically concatenate the data values with the existing values in the table, and if the number of columns in the table matches the number of columns in data,
ATdata.data = [ATdata.data; data];
If you're trying to horizontally concatenate the values,
ATdata.data = [ATdata.data, data];
  6 comentarios
Alexandra Philip
Alexandra Philip el 8 de Jul. de 2020
I was able to figure it out and correct the error.
Adam Danz
Adam Danz el 8 de Jul. de 2020
Editada: Adam Danz el 13 de Jul. de 2020
"The Edit Fields are determined by whatever the user inputs, so they may vary with different users."
So, there's no restrictions whatsoever? Any of the following inputs would be accepted?
  • 10
  • 1 2 3
  • abc def
  • p98q4ur;adkfj
  • (empty)
  • 10:20
  • "10:20"
If so, that's poor design. You should include feedback in your code that tells the user what types of values are acceped and then clears unacceptable values.
If you do want a table of mixed values, the table needs to be a cell array.
I still have no idea what the table and the inputs should be. I can't provide additional suggestions without some examples.

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by