-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Fitting a circle
- This topic has 2 replies, 2 voices, and was last updated 13 years, 10 months ago by saeed farahany.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
January 8, 2011 at 5:36 pm #12551saeed farahanyMember
Hi.
I wanted to fitting a circle for my data. I didn’t find any non-linear curve fitting in Flexpro.8 for circle.
I need to calculate radius of fitted circle.How can I do this?January 8, 2011 at 5:36 pm #8214saeed farahanyMemberHi.
I wanted to fitting a circle for my data. I didn’t find any non-linear curve fitting in Flexpro.8 for circle.
I need to calculate radius of fitted circle.How can I do this?January 10, 2011 at 6:24 pm #8895Bernhard KantzParticipantIn this case you have to use your own user-defined function in the nonlinear curvefit analysis object.
The circe function is (x-x0)^2+(y-y0)^2 = R^2
For the upper half of the circle you could use the following FPScript function:Dim x0 = p[0] Dim y0 = p[1] Dim R = p[2] Sqrt(R^2 - (x-x0)^2) + y0
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.