ellipse

Creates an elliptical shape on the figure.

Syntax

ellipse(property, value)

ellipse(fHandle, property, value)

Inputs

fHandle
Figure handle.
Type: integer
Dimension: scalar
property
Property name of the ellipse.
Type: string
Dimension: scalar
v
Value of the property to be modified.
Type: double | char | logical | struct | cell | integer
Dimension: scalar | vector | matrix

Example

Simple textbox example:

figure(1);
box = [10 10 328 299; 50 50 180 160;100 100 30 20];
for i = [1:size(box,1)]
	handle(i) = ellipse(1, 'pos', box(i,:));
end;


Figure 1. Simple text example