measure error vector magnitude (evm) of received signal -凯发k8网页登录
measure error vector magnitude (evm) of received signal
description
the comm.evm
system object™ measures the root mean squared (rms) evm, maximum evm, and percentile evm of a
received signal.
to measure the evm of a received signal:
create the
comm.evm
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?
creation
description
creates an evm measurement
system object.evm
= comm.evm
sets properties using one or more name-value arguments. for example,
evm
= comm.evm(name
=value
)comm.evm(referencesignalsource="estimated from reference
constellation")
configures the object to measure the evm of a received signal
relative to a reference constellation.
properties
usage
syntax
description
measures the percentage rms evm of received signal rmsevm
= evm(refsym
,rxsym
)rxsym
relative to
reference signal refsym
over the measurement interval specified in
the measurementintervalsource
and measurementinterval
properties.
[
also measures the maximum percentage evm over the configured measurement interval.rmsevm
,maxevm
] = evm(refsym
,rxsym
)
to use this syntax, set the maximumevmoutputport
property to true
.
[___,
also measures the value below which x% of evm measurements fall using
all input frames since the last reset, regardless of measurement interval configuration.
set the value of x in the xevm
] = evm(refsym
,rxsym
)xpercentilevalue
property. for example, if you set the
xpercentilevalue
to 95
, then 95% of all evm
measurements since the last reset fall below the value of xevm
. you
can use this syntax with any previous output argument combination.
to use this syntax, set the xpercentileevmoutputport
property to true
.
[___,
also returns the number of symbols used to measure the x-percentile
evm. to use this syntax, set the numsym
] = evm(refsym
,rxsym
)xpercentileevmoutputport
and symbolcountoutputport
properties to true
.
[___] = evm(
measures the
evm of the received signal relative to the reference signal specified in the rxsym
)referenceconstellation
property. you can use this syntax with any previous
output argument combination.
to use this syntax, set the referencesignalsource
property to 'estimated from reference
constellation'
and the referenceconstellation
property to
a vector of length equal to that of the rxsym
input.
input arguments
output arguments
object functions
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)
examples
algorithms
the implementation supports three normalization methods. you can normalize measurements according to the average power of the reference signal, average constellation power, or peak constellation power. different industry standards follow one of these normalization methods.
the algorithm calculates the rms evm value differently for each normalization method.
evm normalization method | algorithm |
---|---|
reference signal |
|
average power |
|
peak power |
|
in these equations:
ek =
ik is the in-phase measurement of the kth symbol in the burst.
qk is the quadrature phase measurement of the kth symbol in the burst.
n is the input vector length.
pavg is the average constellation power.
pmax is the peak constellation power.
ik and qk represent ideal (reference) values. and represent measured (received) symbols.
the maximum evm is the maximum evm value in a frame or where k is the kth symbol in a burst of length n.
the definition for evmk depends on which normalization method you select for computing measurements. the implementation supports these algorithms.
evm normalization method | algorithm |
---|---|
reference signal |
|
average power |
|
peak power |
|
the implementation computes the x-percentile evm by creating a histogram of the incoming evmk values. this output provides the evm value below which x% of the evm values fall.
extended capabilities
version history
introduced in r2012a