curve/data fitting with complex data and complex function
显示 更早的评论
Hi, I have a set of complex data that I want to fit with a complex function using lsqcurvefit or lsqnonlin.
For example:
xdata=[1 2 3]
ydata=[3j 4 5-j]
function F = myfun(x,xdata)
F = x(1)+x(2)*xdata + j*(sin(x(3)*xdata));
How can I perform a least-squares-fitting of the function to the data so that I obtain the real parameters x?
Cheers Stefan
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Least Squares 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!