Plot an ellipse in "center form"

バージョン 1.0.0.0 (2.09 KB) 作成者: Nima Moshtagh
Draws 2D and 3D ellipses that are given in "center form".
ダウンロード: 7.7K
更新 2007/11/16

ライセンスの表示

Ellipse_plot(A,c)

This function draws an N-dimensional ellipse (N = 2,3) that is given in "center form":

(x - C)' A (x - C) <= 1

where C is the center of the ellipse, and A is an NxN positive definite symmetric matrix.

A and C could be the outputs of the function: "MinVolEllipse.m", which computes the minimum volume enclosing ellipsoid containing a set of points in an N-dimensional space. For example, you can use this function as follows:

P = rand(3,100);
t = 0.001;
[A , C] = MinVolEllipse(P, t)
figure
plot3(P(1,:),P(2,:),P(3,:),'*')
hold on
Ellipse_plot(A,C)

引用

Nima Moshtagh (2024). Plot an ellipse in "center form" (https://www.mathworks.com/matlabcentral/fileexchange/13844-plot-an-ellipse-in-center-form), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R13
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersComputational Geometry についてさらに検索
謝辞

ヒントを得たファイル: Minimum Volume Enclosing Ellipsoid

ヒントを与えたファイル: fakenmc/amvidc, Ellipsoid Method

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

The help section of the function was edited.