Main Content

showPeaksTable

Show or hide peak marker table

Description

example

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

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);

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

showPeaksTable(P,0);

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