constellation

Calculate or plot ideal signal constellation

Syntax

y = constellation(h)
constellation(h)

Description

y = constellation(h) returns the numerical values of the constellation.

constellation(h) generates a constellation plot for the object.

Examples

Calculate Ideal Signal Constellation for comm.gpu.PSKDemodulator

Create a comm.gpu.PSKDemodulator System object™, and then calculate its ideal signal constellation.

Create a comm.gpu.PSKDemodulator System object by entering the following at the MATLAB® command line:

h = comm.gpu.PSKDemodulator

Calculate and display the ideal signal constellation by calling the constellation method.

a = constellation(h)

Plot Ideal Signal Constellation for comm.gpu.PSKDemodulator

Create a comm.gpu.PSKDemodulator System object, and then plot the ideal signal constellation.

Create a comm.gpu.PSKDemodulator System object by entering the following at the MATLAB command line:

h = comm.gpu.PSKDemodulator

Plot the ideal signal constellation by calling the constellation method.

constellation(h)