fitting vector valued functions
9 次查看(过去 30 天)
显示 更早的评论
I see Matlab has many different ways to fit a scalar valued function (for example
z = f(x,y)
but is there anything that can help me fit a vector valued function
[u, v] = f(x,y)
Note that the coefficients to the fit would be multiplied by a vector, in the equation of f. for example, a term could be a*[x y]
This causes an error in the scalar fitting routines because the coefficient 'a' to be found by fitting can only be multiplied by a scalar.
0 个评论
回答(3 个)
Shashank Prasanna
2013-1-14
From your questions I appears that you want to perform Multivariate Regression where the response is m dimensional
Y = F(X) where Y belongs to |Rm and x belongs to |Rn You can do this using MVREGRESS:
Matt J
2013-1-14
LSQCURVEFIT can do multi-variate non-linear fitting.
You need the Optimization Toolbox, of course.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Get Started with Curve Fitting Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!