Main Content

plus

Shape1 + Shape2

Description

example

c = plus(shape1,shape2) calls the syntax shape1 + shape2 to unite two shapes.

Examples

collapse all

Create a rectangular and circular shape and unite them.
r  = antenna.Rectangle;
c  = antenna.Circle; 
r+c;

Figure contains an axes object. The axes object with xlabel x (m), ylabel y (m) contains 2 objects of type patch. These objects represent PEC, mypolygon.

Input Arguments

collapse all

Shapes created using custom elements and shape objects of Antenna Toolbox™, specified as an object.

Example: rectangle1+rectangle2 where rectangle1 and rectangle2 are shapes created using antenna.Rectangle object.

Version History

Introduced in R2017a