MATLAB: How to develop regression function (Mathmatical form) from trained model using regression learner

machine learningsupport vector regresssion

How to extract regression function in term of mathmatical form (or tool or excel sheet) from trained model using regression learner (Support Vector Regression).

Best Answer

In case of support vector machines(both for classification and regression), the score function/regression function might not be in terms of input predictors, hence it might not be possible to get the regression function. The coefficients can be obtained using
trainedModel.RegressionSVM
As a workaround, you can use other regression techniques such as linear regression, which derive output in terms of predictors.
Related Question