Error using matlab.ui.​control.Ed​itField/se​t.Value 'Value' must be a character vector or a string scalar.

8 vues (au cours des 30 derniers jours)
So I've using App Designer to import a file. I'm giving the user an option to pick Beginning and Endings dates for the file that they are importing. Here is some of my code that I've used in the past (as a function) to check to see if the user put anything for the Beginning dates and if they did, it uses 'datetime' and 'timerange' to and the dates to the readtable function.
if ~isempty(app.BeginningEditField.Value)
app.BeginningEditField.Value = datetime(app.BeginningEditField.Value,'InputFormat',app.OutputDateTimeStringFormat);
app.EndingEditField.Value = datetime(app.EndingEditField.Value,'InputFormat',app.OutputDateTimeStringFormat);
TR = timerange(app.BeginningEditField.Value, app.EndingEditField.Value, 'closed');
InTable = InTable(TR,:);
end
The variable app.OutputDateTimeStringFormat is set to 'yyyy/MM/dd HH:mm:ss'
Whever I type in a date in the Beginning and Ending Edit Field (with the same format as the app.OutputDateTimeStringFormat) I get this error.
Error using matlab.ui.control.EditField/set.Value (line 98)
'Value' must be a character vector or a string scalar.
I've tried using 'num2str(app.BeginningEditField.Value)' to possible change that into a string which could be used with this function but that does not work.
P.S. this error occurs on the 2nd and 3rd line. (where it uses 'datetime' function)
  2 commentaires
Sampath Rachumallu
Sampath Rachumallu le 2 Juin 2020
Are you using 'datepicker' to ask user to select the dates or an edit field?
Forrest Ward
Forrest Ward le 2 Juin 2020
I am using an Edit Field because I needed Hours, Minutes, and Seconds which I don't think the date picker has those options, but I could be wrong.

Connectez-vous pour commenter.

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 2 Juin 2020
Modifié(e) : Fangjun Jiang le 2 Juin 2020
  1. The value for "app.BeginningEditField.Value" needs to be a character vector or string scalr. datetime() returns an object of the "datetime" class. That is the mismatch.
  2. Try datestr() instead of num2str()
  3. You are re-assign "app.BeginningEditField.Value" in the code. Would using a separate variable avoid this problem?
if ~isempty(app.BeginningEditField.Value)
StartValue = datetime(app.BeginningEditField.Value,'InputFormat',app.OutputDateTimeStringFormat);
EndValue = datetime(app.EndingEditField.Value,'InputFormat',app.OutputDateTimeStringFormat);
TR = timerange(StartValue, EndValue, 'closed');
InTable = InTable(TR,:);
end
  4 commentaires
Forrest Ward
Forrest Ward le 2 Juin 2020
So like the error says, the data supported by uitable() needs to be string, cell, table array, etc. So in order to convert my time table to that format I tried using 'timetable2table(TimeTableOut)' which works in the command line but does not work in the App Designer for some reason.
Forrest Ward
Forrest Ward le 2 Juin 2020
Hold up, using 'timetable2table' actually worked!! And I found out my problem with the dates! My input for the dates just needed to be in a different format.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by