info
Syntax
Description
Examples
Get Receiver Noise Floor Info
The thermal noise object simulates the effects of receiver thermal noise on a complex baseband signal. Measuring the receiver thermal noise floor enables you to assess the minimum recoverable signal level of a receiver. Use the info
object function to return the receiver thermal noise floor for the configured comm.ThermalNoise
object.
Create a thermal noise object.
noise = comm.ThermalNoise( ... NoiseTemperature=290, ... ReferenceLoad=50, ... SampleRate=5e6)
noise = comm.ThermalNoise with properties: NoiseMethod: 'Noise temperature' NoiseTemperature: 290 ReferenceLoad: 50 SampleRate: 5000000
Check the thermal noise object information.
info(noise)
ans = struct with fields:
NoiseFloor: -119.9958
Apply Thermal Noise to Multichannel Signal
Apply thermal noise to a multichannel signal and confirm that each channel has the same noise floor as returned by the info
object function.
Create a comm.ThermalNoise
object.
tn = comm.ThermalNoise
tn = comm.ThermalNoise with properties: NoiseMethod: 'Noise temperature' NoiseTemperature: 290 ReferenceLoad: 1 SampleRate: 1
Apply thermal noise to a multichannel signal and compute the signal variance for each channel.
x = tn(zeros(100000,3,'like',1i));
10*log10(var(x))
ans = 1×3
-203.9973 -203.9684 -203.9802
Use the info
object function to return the receiver thermal noise floor.
info(tn)
ans = struct with fields:
NoiseFloor: -203.9752
Input Arguments
obj
— System object to get information from
System object
System object to get information from, specified as a comm.ThermalNoise
System object.
Output Arguments
S
— Structure containing object information
structure
Structure containing these fields with information about the System object.
NoiseFloor
— Noise floor
scalar
Noise floor in dB/Hz, returned as a scalar.
Version History
Introduced in R2023b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)