measure modulation error ratio of received signal -凯发k8网页登录
measure modulation error ratio of received signal
description
the comm.mer
system object™ computes a form of signal-to-noise ratio (snr) measurement that you can use to
assess the ability of a receiver to accurately demodulate a signal. specifically, it returns
the modulation error ratio (mer), minimum mer, and percentile mer for a received signal. you
use the mer measurements to determine system performance in communications applications. for
example, to determine compliance with applicable dvb-t system radio transmission standards
conformance testing requires accurate mer measurements.
to measure the mer of a received signal:
create the
comm.mer
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 mer system object with default property values.mer1
= comm.mer
sets properties using one or more name-value arguments. for example,
mer1
= comm.mer(name
=value
)comm.mer(referencesignalsource="estimated from reference
constellation")
configures the object to measure the mer of a received signal
relative to a reference constellation.
properties
usage
syntax
description
returns the mer of received signal merdb
= mer1(refsym
,rxsym
)rxsym
relative to reference signal
refsym
over the measurement interval specified in the measurementintervalsource
and measurementinterval
properties.
[
also returns the minimum percentage mer over the configured measurement interval.merdb
,minmer
] = mer1(refsym
,rxsym
)
to use this syntax, set the minimummeroutputport
property to true
.
[___,
also returns the value below which x% of mer measurements fall using
all input frames since the last reset, regardless of measurement interval configuration.
set the value of x in the pmer
] = mer1(refsym
,rxsym
)xpercentilevalue
property. for
example, if you set the xpercentilevalue
to 95
,
then 95% of all mer measurements since the last reset fall below the value of
pmer
.
to use this syntax, set the xpercentilemeroutputport
property to true
.
[___,
also returns the number of symbols used to measure mer. to use this syntax, set the
pmer
,numsym
] = mer1(refsym
,rxsym
)xpercentilemeroutputport
and symbolcountoutputport
to
true
.
[___] = mer1(
measures the
mer 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"
.
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
mer is a measure of the snr in a modulated signal calculated in db. the mer over a burst containing n symbols is
where:
ek = .
ik represents the in-phase component of the kth symbol in the burst.
qk represents the quadrature phase component of the kth symbol in the burst.
ik and qk represent ideal reference values.
and represent received symbols.
n represents the number of symbols in the burst.
the mer for the kth symbol is
the minimum mer represents the minimum mer value in a burst, or
the algorithm computes the x-percentile mer by creating a histogram of all the incoming merk values. the output provides the mer value above which x% of the mer values fall.
references
[1] esti tr 101 290. digital video broadcasting (dvb): measurement guidelines for dvb systems. june 2020.
extended capabilities
version history
introduced in r2012a