Main Content

showPeaksTable

Show or hide peak marker table

Description

showPeaksTable(p,vis) shows or hides a table of the peak values. By default, the peak values table is visible.

example

Examples

collapse all

Create a monopole antenna and calculate the directivity at 1 GHz.

m = monopole;
M = pattern(m,1e9,0,0:1:360);

Plot the polar pattern and show three peaks of the antenna. When creating a polarpattern plot, if you specify the Peaks property, the peaks table is displayed by default.

P = polarpattern(M,Peaks=3);

Figure Polar Measurement contains an axes object and another object of type uicontainer. The hidden axes object contains an object of type line.

Hide the table. When the peaks table is hidden, the peak markers display the peak values.

showPeaksTable(P,0);

Figure Polar Measurement contains an axes object. The hidden axes object contains an object of type line.

Input Arguments

collapse all

Polar plot, specified as a polarpattern object.

Example: polarpattern

Show or hide peaks table, specified as 0 for hide or 1 for show.

Example: 0

Data Types: logical

Version History

Introduced in R2016a