Predict responses of linear regression model using one input for each predictor
returns the predicted response of ypred
= feval(mdl
,Xnew1,Xnew2,...,Xnewn
)mdl
to the new input
predictors Xnew1,Xnew2,...,Xnewn
.
A regression object is, mathematically, a function that estimates the relationship between the response and predictors. The feval
function enables an object to behave like a function in MATLAB®. You can pass feval
to another function that accepts a function input, such as fminsearch
and integral
.
feval
can be simpler to use with a model created from a table or dataset array. When you have new predictor data, you can pass it to feval
without creating a table or matrix.