Modulate using QPSK method
The comm.QPSKModulator
object modulates using the quadrature phase shift keying
method. The output is a baseband representation of the modulated signal.
To apply QPSK modulation:
Create the comm.QPSKModulator
object and set its properties.
Call the object with arguments, as if it were a function.
To learn more about how System objects work, see What Are System Objects?.
qpskmod = comm.QPSKModulator
creates a modulator System object™. Use this object to modulate the input signal using the quadrature phase
shift keying (QPSK) method.
qpskmod = comm.QPSKModulator(
creates a QPSK modulator object, with each specified property set to the specified value.
You can specify additional name-value pair arguments in any order as
(Name
,Value
)Name1
,Value1
,...,NameN
,ValueN
).
qpskmod = comm.QPSKModulator(phase,
creates a QPSK modulator object, Name
,Value
)qpskmod
. This object has the
PhaseOffset
property set to phase
and the other specified properties set to the specified values. Specify
phase
in radians.
To use an object function, specify the
System object as the first input argument. For
example, to release system resources of a System object named obj
, use
this syntax:
release(obj)