How to fit the data points into a closed curve?

19 views (last 30 days)
Wesley
Wesley on 26 Nov 2020
Answered: Wesley on 27 Nov 2020
Hello everyone, I’d like to ask you a question. Now I have a series of data points and want to fit these points into a closed curve. But the effect is not good, I would be very grateful if anyone can help me. The data required for closed curve fitting is shown below.
  3 Comments
John D'Errico
John D'Errico on 26 Nov 2020
Please don't use an answer just to make a comment. I've moved your answer into this comment.
John D'Errico
John D'Errico on 26 Nov 2020
What about that data do you want to be a closed curve? No, you cannot use interpolation using tools like interp1 to fit the black curve.

Sign in to comment.

Answers (3)

Stephan
Stephan on 26 Nov 2020
This will not solve your problem finally, but it shows a possible way to tackle this. The idea here is to use a cardiod curve and find parameters that try to minimize the difference between the single data points:
data = readmatrix('DataFit.xlsx');
a = [72.0839, 1.3643, 338.485, 289.4648, -21];
[x,y] = calcCurve(a);
figure
scatter(data(:,1),data(:,2))
hold on
scatter(x,y)
hold off
function [x,y] = calcCurve(a)
theta = linspace(-pi,pi,1187);
r = @(theta) a(1).*(a(2)+cos(theta));
rho = r(theta);
[x,y] = pol2cart(theta,rho);
x = -x';
y = -y';
xy = sortrows([x,y],1);
x = xy(:,1) + a(3);
y = xy(:,2) + a(4);
end
The parameters for a were found by optimization techniques - maybe this is a local optimum and we could do better. But the point is, that you have to think about your mathematical problem and analyze what you have there. After that it makes sense to start coding:

Wesley
Wesley on 27 Nov 2020
The curve you fit out is a bit larger than the original image. I am thinking of a fitting method that is more appropriate to the original curve. The method described in this article feels very feasible. But I don't know how to implement it with programs. The article is as follows:

Wesley
Wesley on 27 Nov 2020
For convenience, we use this data for closed curve fitting.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!