step
System object: phased.PhaseCodedWaveform
Namespace: phased
Samples of phase-coded waveform
Syntax
Y = step(sPCW)
Y = step(sPCW,prfidx)
Y = step(sRFM,freqoffset)
[Y,PRF] = step(___)
[Y,COEFF] = step(___)
Description
Note
Starting in R2016b, instead of using the step
method
to perform the operation defined by the System object™, you can
call the object with arguments, as if it were a function. For example, y
= step(obj,x)
and y = obj(x)
perform
equivalent operations. When the only argument to the step
method
is the System object itself, replace y = step(obj)
by y
= obj()
.
Y = step(sPCW)
returns samples of the phase-coded
pulse in a column vector, Y
.
Y = step(sPCW,prfidx)
, uses the prfidx
index
to select the PRF from the predefined vector of values specified by
in the PRF
property. This syntax applies when
you set the PRFSelectionInputPort
property to true
.
Y = step(sRFM,freqoffset)
, uses the
freqoffset
to generate the waveform with an offset as specified
at step time. Use this syntax for cases where the transmit pulse frequency needs to be
dynamically updated. This syntax applies when you set the
FrequencyOffsetSource
property to 'Input
port'
.
[Y,PRF] = step(___)
also returns the current pulse
repetition frequency, PRF
. To enable this syntax, set the
PRFOutputPort
property to true
and set the
OutputFormat
property to 'Pulses'
.
[Y,COEFF] = step(___)
returns the matched filter
coefficients, COEFF
, for the current pulse. To enable this syntax,
set CoefficientsOutputPort
to true
.
COEFF
is returned as an
NZ-by-1 vector, where
NZ is the maximum of the nonzero pulse
width.
You can combine optional input and output arguments when their enabling properties are
set. Optional inputs and outputs must be listed in the same order as the order of the
enabling properties. For example, [Y,PRF,COEFF] =
step(sRFM,prfidx,freqoffset)
.
Note
The object performs an initialization the first time the object is executed. This
initialization locks nontunable properties
and input specifications, such as dimensions, complexity, and data type of the input data.
If you change a nontunable property or an input specification, the System object issues an error. To change nontunable properties or inputs, you must first
call the release
method to unlock the object.
Input Arguments
|
Phase-coded waveform object. |
Output Arguments
|
Column vector containing the waveform samples. |