Index exceeds the number of array elements (1). Error coming in the code below

2 次查看(过去 30 天)
Hi,
I am using one of the matlab function called CircleFitByTaubin but I am stuck on one of the line as shown in the error below and not sure how to correct this? If anyone can help here? I have attached the code, function and data here.
Error:
Index exceeds the number of array elements (1).
Error in CircleFitByTaubin (line 25)
Yi = XY(i,2) - centroid(2); % centering data
Error in circlefitting (line 9)
Par = CircleFitByTaubin(P);
  4 个评论
per isakson
per isakson 2020-10-23
But you have not told us how to use these three files to reproduce the error, which you have reported!
muhammad choudhry
muhammad choudhry 2020-10-23
Hi,
there was 2 script attached one was best circle fit in which I am calling the function CircleFitByTaubin, which is also attached above please see CircleFitByTaubin.m , I want to use this code to cover most of the points in the circle and estimate the size of that circle and radius.
Thanks

请先登录,再进行评论。

采纳的回答

per isakson
per isakson 2020-10-23
编辑:per isakson 2020-10-23
I cannot reproduce (on R2018b) the error that you report:
Index exceeds the number of array elements (1).
Error in CircleFitByTaubin (line 25)
Yi = XY(i,2) - centroid(2); % centering data
Error in circlefitting (line 9)
Par = CircleFitByTaubin(P);
You have not provided the mfunction, circlefitting. There is no call to CircleFitByTaubin in bestcirclefit.m. The mfile, bestcirclefit.m, has an syntax error and isn't possible to run.
CircleFitByTaubin works as expected:
%%
XY = dlmread('test1.txt','\t',0,0);
%%
par = CircleFitByTaubin(XY);
and returns
>> par
par =
0.41541 0.30058 0.028124
  5 个评论
muhammad choudhry
muhammad choudhry 2020-10-23
thanks alot for the reply, how to do the ellipse fitting. The major goal is to fit the points to the well defined shape like circle, if you can guide me how to do with the ellipse it will give me a plus point to show in my report that how most of the points are covered through the ellipse.
Thanks alot once again.
per isakson
per isakson 2020-10-24
编辑:per isakson 2020-10-24
Search the File Exchange for fit ellipse. There are some submissions, which will help you earn the "plus point".
"to fit the points to the well defined shape" it's the other way round. One fits a model/equation/shape to data points.
And in the column to the right of this page there is an interesting link: Fitting Circles (again) and Ellipses

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by