Error in linear regression
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I tried creating a regression model for the csv file (attached). The formula I wanted to create was sl~sst +at.
I loaded the table using "readtable" and then input the code to load the data in a table:
tbl = table(sl,sst,at,'VariableNames',{'Sea level','SST','AirT'})
I get the following error:
Error using feval
Not enough input arguments.
Error in sl (line 15)
[varargout{1:nargout}]=feval(varargin{:});
I would appreciate some help in this matter.
0 Commenti
Risposta accettata
Matt J
il 10 Lug 2018
Modificato: Matt J
il 10 Lug 2018
You have a function named sl() somewhere in your path, one that requires input arguments. Matlab is interpreting your use of sl in
tbl = table(sl,sst,at,'VariableNames',{'Sea level','SST','AirT'})
as a call to that function with no input arguments.
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear Regression in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!