Undefined function or variable 'trainRegressionModel'.
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
>> X = timetable2table(T); % regressionLearner perfers to have tables.
X.NumericDate = datenum(X.Date); % add the date as a numeric value
% remove the missing year of data (2016)
X = rmmissing(X);
% Use this command to open the regression learner app and train a coarse
% tree:
% regressionLearner
% this is the model saved by generating code from the app:
[trainedModel, validationRMSE] = trainRegressionModel(X)
Undefined function or variable 'trainRegressionModel'.
0 Kommentare
Antworten (1)
robin thomas
am 10 Dez. 2019
Bearbeitet: robin thomas
am 10 Dez. 2019
save the matlab code file name as 'trainRegressionMode'
0 Kommentare
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer 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!