Given the set X and Y of a circle/ellipse how would you calculate the diameter?

3 ビュー (過去 30 日間)
Glypton
Glypton 2022 年 7 月 4 日
回答済み: Sam Chak 2022 年 7 月 4 日
Mapping polar coordinates to cartesian coordinates
theta = linspace(0, 2*pi, 15000);
[x,y] = pol2cart(theta, rho);
How would I calculate the diameter? I thought about calculating the circumference and then I could use this formula C/pi = d but I am not sure how to do this. If it is an ellipse (almost circle like) then I want to approximate the diameter by treating the ellipse as a circle. How would I do this if I have the set x and y describing these areas?

採用された回答

Sam Chak
Sam Chak 2022 年 7 月 4 日
One way is to fit the data (x, y) using the circle equation model.
From the fitted model, you will know the radius, r, and then you estimate the diameter, .
Does it sound easy enough? I wonder.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolar Plots についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by