SlideShare a Scribd company logo
Introduction:
In our increasingly mobile society, individuals are prone to doing just about everything
on the move. Listening to music is certainly not an exception. However, when one listens to
music away from the home, one necessarily has less control over noise exposure. Airplane, bus
and car engines are the most common noise distractions as one travels. Lawnmower engines,
others’ speech and music are also frequently encountered. Surely, there is considerable benefit
in obtaining headphones that could perform active noise cancellation – be able to filter out
noise as one encounters it.
What is Noise Cancellation?
Noise cancellation is an active or passive means of reducing sound emissions, often for
personal comfort, environmental considerations or legal compliance. Active noise control is
sound reduction using a power source. Passive noise control is sound reduction by noise-
isolating materials such as insulation, sound-absorbing tiles, or a muffler rather than a power
source.
Active noise canceling is best suited for low frequencies. For higher frequencies, the spacing
requirements for free space and zone of silence techniques become prohibitive. In acoustic
cavity and duct based systems, the number of nodes grows rapidly with increasing frequency,
which quickly makes active noise control techniques unmanageable. Passive treatments
become more effective at higher frequencies and often provide an adequate solution without
the need for active control.
Adaptive Noise Cancellation (ANC) Method:
Sound is a pressure wave, which consists of alternating periods
of compression and rarefaction. A noise-cancellation speaker emits a sound wave with the
same amplitude but with inverted phase (also known as antiphase) to the original sound. The
waves combine to form a new wave, in a process called interference, and effectively cancel
each other out – an effect which is called destructive interference.
Fig. 1: Destructive Interference
Modern active noise control is generally achieved through the use of analog circuits
or digital signal processing. Adaptive algorithms are designed to analyze the waveform of the
background noise, then based on the specific algorithm generate a signal that will either phase
shift or invert the polarity of the original signal. This inverted signal (in antiphase) is then
amplified and a transducer creates a sound wave directly proportional to the amplitude of the
original waveform, creating destructive interference. This effectively reduces the volume of the
perceivable noise.
A noise-cancellation speaker may be co-located with the sound source to be attenuated. In this
case it must have the same audio power level as the source of the unwanted sound.
Alternatively, the transducer emitting the cancellation signal may be located at the location
where sound attenuation is wanted (e.g. the user's ear). This requires a much lower power level
for cancellation but is effective only for a single user. Noise cancellation at other locations is
more difficult as the three-dimensional wave fronts of the unwanted sound and the
cancellation signal could match and create alternating zones of constructive and destructive
interference, reducing noise in some spots while doubling noise in others. In small enclosed
spaces (e.g. the passenger compartment of a car) global noise reduction can be achieved via
multiple speakers and feedback microphones, and measurement of the modal responses of the
enclosure.
Fig. 2: Graphical depiction of active noise reduction
Algorithm:
There are several algorithms used to calculate the “anti-noise” signal. The Least Mean
Square (LMS) algorithm is comprised of two processes – a filtering process producing the
output signal and the estimation error, and an adaptive process responsible for the automatic
adjustment of filter tap weights.
Fig. 3: Sample ANC flowchart with LMS
Code in MATLAB:
%noise cancellation
clc;
clear all;
order=2;
size=2; %time duration of inputs
fs=8192; %digital sampling frequency
t=[0:1/fs:size];
N=fs*size; %size of inputs
f1=35/2; %frequency of voice
f2=99/2; %frequency of noise
voice=cos(2*pi*f1*t);
subplot(4,1,1)
plot(t,voice);
title('voice (do not have access to)')
noise=cos(2*pi*f2*t.^2); %increasing frequency
noise
%noise=.1*rand(1,length(voice)); %white noise
primary=voice+noise;
subplot(4,1,2)
plot(t,primary)
title('primary = voice + noise (input1)')
ref=noise+.25*rand; %noisy noise
subplot(4,1,3)
plot(t,ref)
title('reference (noisy noise) (input2)');
w=zeros(order,1);
mu=.006;
for i=1:N-order
buffer = ref(i:i+order-1); %current 32
points of reference
desired(i) = primary(i)-buffer*w; %dot product
reference and coeffs
w=w+(buffer.*mu*desired(i)/norm(buffer))';%update coeffs
end
subplot(4,1,4)
plot(t(order+1:N),desired)
title('Adaptive output (hopefully it is close to "voice")')
Fig. 4: Output in MATLAB
Application:
It can be used in Noise-cancelling headphones which are headphones that reduce
unwanted ambient sounds using active noise control. This is distinct from passive headphones
which, if they reduce ambient sounds at all, use techniques such as soundproofing.
To cancel the lower-frequency portions of the noise, noise-cancelling headphones
use active noise control. They incorporate a microphone that measures ambient sound,
generate a waveform that is the exact negative of the ambient sound, and mix it with any audio
signal the listener desires.
Drawbacks:
1. Active noise control requires power, usually supplied by a USB port or a battery that
must occasionally be replaced or recharged.
2. Any battery and additional electronics may increase the size and weight of the
headphones compared to regular headphones.
3. The noise-cancelling circuitry may reduce audio quality and add high-frequency hiss,
though reducing the noise may result in higher perceived audio quality.
Conclusion:
Noise cancellation makes it possible to listen to music without raising the volume
excessively. It can also help a passenger sleep in a noisy vehicle such as an airliner. In the
aviation environment, noise-cancelling headphones increase the signal-to-noise
ratio significantly more than passive noise attenuating headphones or no headphones, making
hearing important information such as safety announcements easier. Noise-cancelling
headphones can improve listening enough to completely offset the effect of a distracting
concurrent activity.

More Related Content

What's hot

Design of a rectangular patch antenna
Design of a rectangular patch antennaDesign of a rectangular patch antenna
Design of a rectangular patch antenna
Azlin lolin
 
Instrumental lecture 2
Instrumental lecture 2Instrumental lecture 2
Instrumental lecture 2
esmail_alwrafi
 

What's hot (20)

Design of a rectangular patch antenna
Design of a rectangular patch antennaDesign of a rectangular patch antenna
Design of a rectangular patch antenna
 
Quadrature amplitude modulation
Quadrature amplitude modulationQuadrature amplitude modulation
Quadrature amplitude modulation
 
Spectrum analyzer
Spectrum  analyzerSpectrum  analyzer
Spectrum analyzer
 
NYQUIST CRITERION FOR ZERO ISI
NYQUIST CRITERION FOR ZERO ISINYQUIST CRITERION FOR ZERO ISI
NYQUIST CRITERION FOR ZERO ISI
 
Basics of digital filters
Basics of digital filtersBasics of digital filters
Basics of digital filters
 
Ssb generation method
Ssb generation methodSsb generation method
Ssb generation method
 
Introduction to equalization
Introduction to equalizationIntroduction to equalization
Introduction to equalization
 
Antinoise system & Noise Cancellation
Antinoise system & Noise CancellationAntinoise system & Noise Cancellation
Antinoise system & Noise Cancellation
 
Propagation effects and their impact on satellite earth links
Propagation effects and their impact on satellite earth linksPropagation effects and their impact on satellite earth links
Propagation effects and their impact on satellite earth links
 
Filter- IIR - Digital signal processing(DSP)
Filter- IIR - Digital signal processing(DSP)Filter- IIR - Digital signal processing(DSP)
Filter- IIR - Digital signal processing(DSP)
 
311 linear modulation
311 linear modulation311 linear modulation
311 linear modulation
 
4.5 equalizers and its types
4.5   equalizers and its types4.5   equalizers and its types
4.5 equalizers and its types
 
Instrumental lecture 2
Instrumental lecture 2Instrumental lecture 2
Instrumental lecture 2
 
Introduction to modulation and demodulation
Introduction to modulation and demodulationIntroduction to modulation and demodulation
Introduction to modulation and demodulation
 
CELLULAR MOBILE RADIO SYSTEMS
CELLULAR MOBILE RADIO SYSTEMSCELLULAR MOBILE RADIO SYSTEMS
CELLULAR MOBILE RADIO SYSTEMS
 
Design of Filters PPT
Design of Filters PPTDesign of Filters PPT
Design of Filters PPT
 
Equalization
EqualizationEqualization
Equalization
 
Phase locked loop
Phase locked loopPhase locked loop
Phase locked loop
 
Multirate DSP
Multirate DSPMultirate DSP
Multirate DSP
 
Digital communication viva questions
Digital communication viva questionsDigital communication viva questions
Digital communication viva questions
 

Similar to NOISE CANCELATION USING MATLAB

20150211 NAB paper - Audio Loudness Range -John Kean
20150211 NAB paper - Audio Loudness Range -John Kean20150211 NAB paper - Audio Loudness Range -John Kean
20150211 NAB paper - Audio Loudness Range -John Kean
Jeremy Adams
 
Business Energy Magazine 206-06 Edition - MIRATECH Article
Business Energy Magazine 206-06 Edition - MIRATECH ArticleBusiness Energy Magazine 206-06 Edition - MIRATECH Article
Business Energy Magazine 206-06 Edition - MIRATECH Article
Mehmood Ahmed
 
Chapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurementChapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurement
Noor Farahin
 
Chapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurementChapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurement
Noor Farahin
 

Similar to NOISE CANCELATION USING MATLAB (20)

Landscape assignment
Landscape assignmentLandscape assignment
Landscape assignment
 
Specific features of hearing aids
Specific features of hearing aidsSpecific features of hearing aids
Specific features of hearing aids
 
Audio spotlighting
Audio spotlightingAudio spotlighting
Audio spotlighting
 
Audio spotlighting
Audio spotlightingAudio spotlighting
Audio spotlighting
 
Noise Control of Vacuum Cleaners
Noise Control of Vacuum CleanersNoise Control of Vacuum Cleaners
Noise Control of Vacuum Cleaners
 
Acoustic echo cancellation
Acoustic echo cancellationAcoustic echo cancellation
Acoustic echo cancellation
 
Application of Digital Signal Processing In Echo Cancellation: A Survey
Application of Digital Signal Processing In Echo Cancellation: A SurveyApplication of Digital Signal Processing In Echo Cancellation: A Survey
Application of Digital Signal Processing In Echo Cancellation: A Survey
 
Poster presentations Silent Siren
Poster presentations Silent SirenPoster presentations Silent Siren
Poster presentations Silent Siren
 
20150211 NAB paper - Audio Loudness Range -John Kean
20150211 NAB paper - Audio Loudness Range -John Kean20150211 NAB paper - Audio Loudness Range -John Kean
20150211 NAB paper - Audio Loudness Range -John Kean
 
Business Energy Magazine 206-06 Edition - MIRATECH Article
Business Energy Magazine 206-06 Edition - MIRATECH ArticleBusiness Energy Magazine 206-06 Edition - MIRATECH Article
Business Energy Magazine 206-06 Edition - MIRATECH Article
 
Module 5 of ME 010 702 DYNAMICS OF MACHINES
Module 5 of ME 010 702 DYNAMICS OF MACHINESModule 5 of ME 010 702 DYNAMICS OF MACHINES
Module 5 of ME 010 702 DYNAMICS OF MACHINES
 
Noise cancellation
Noise cancellationNoise cancellation
Noise cancellation
 
DC PRESENTATION-1.pptx
DC PRESENTATION-1.pptxDC PRESENTATION-1.pptx
DC PRESENTATION-1.pptx
 
Chapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurementChapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurement
 
Chapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurementChapter 8 noise mitigation and measurement
Chapter 8 noise mitigation and measurement
 
A_Noise_Reduction_Method_Based_on_LMS_Adaptive_Fil.pdf
A_Noise_Reduction_Method_Based_on_LMS_Adaptive_Fil.pdfA_Noise_Reduction_Method_Based_on_LMS_Adaptive_Fil.pdf
A_Noise_Reduction_Method_Based_on_LMS_Adaptive_Fil.pdf
 
Design and Implementation of Polyphase based Subband Adaptive Structure for N...
Design and Implementation of Polyphase based Subband Adaptive Structure for N...Design and Implementation of Polyphase based Subband Adaptive Structure for N...
Design and Implementation of Polyphase based Subband Adaptive Structure for N...
 
A guideto reductionoftrafficnoise2003
A guideto reductionoftrafficnoise2003A guideto reductionoftrafficnoise2003
A guideto reductionoftrafficnoise2003
 
B012130610
B012130610B012130610
B012130610
 
A Brief Review on Advance Acoustic Control System Process of Automotive Muffler
A Brief Review on Advance Acoustic Control System Process of Automotive MufflerA Brief Review on Advance Acoustic Control System Process of Automotive Muffler
A Brief Review on Advance Acoustic Control System Process of Automotive Muffler
 

More from Aniruddha Paul (9)

LTE CONCEPTS.pdf
LTE CONCEPTS.pdfLTE CONCEPTS.pdf
LTE CONCEPTS.pdf
 
Infosys papers Aptitude Preparation
Infosys papers Aptitude PreparationInfosys papers Aptitude Preparation
Infosys papers Aptitude Preparation
 
C interview questions (campusgate)
C interview questions (campusgate)C interview questions (campusgate)
C interview questions (campusgate)
 
DIGITAL INDIA
DIGITAL INDIADIGITAL INDIA
DIGITAL INDIA
 
DATA STRUCTURE AND ALGORITHM FULL NOTES
DATA STRUCTURE AND ALGORITHM FULL NOTESDATA STRUCTURE AND ALGORITHM FULL NOTES
DATA STRUCTURE AND ALGORITHM FULL NOTES
 
PYTHON FULL TUTORIAL WITH PROGRAMMS
PYTHON FULL TUTORIAL WITH PROGRAMMSPYTHON FULL TUTORIAL WITH PROGRAMMS
PYTHON FULL TUTORIAL WITH PROGRAMMS
 
AIR POLLUTION
AIR POLLUTIONAIR POLLUTION
AIR POLLUTION
 
Bhopal gas disaster
Bhopal gas disasterBhopal gas disaster
Bhopal gas disaster
 
Bhopal gas tragedy
Bhopal gas tragedyBhopal gas tragedy
Bhopal gas tragedy
 

Recently uploaded

power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Laundry management system project report.pdf
Laundry management system project report.pdfLaundry management system project report.pdf
Laundry management system project report.pdf
Kamal Acharya
 
Digital Signal Processing Lecture notes n.pdf
Digital Signal Processing Lecture notes n.pdfDigital Signal Processing Lecture notes n.pdf
Digital Signal Processing Lecture notes n.pdf
AbrahamGadissa
 
Hall booking system project report .pdf
Hall booking system project report  .pdfHall booking system project report  .pdf
Hall booking system project report .pdf
Kamal Acharya
 

Recently uploaded (20)

The Ultimate Guide to External Floating Roofs for Oil Storage Tanks.docx
The Ultimate Guide to External Floating Roofs for Oil Storage Tanks.docxThe Ultimate Guide to External Floating Roofs for Oil Storage Tanks.docx
The Ultimate Guide to External Floating Roofs for Oil Storage Tanks.docx
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
 
fluid mechanics gate notes . gate all pyqs answer
fluid mechanics gate notes . gate all pyqs answerfluid mechanics gate notes . gate all pyqs answer
fluid mechanics gate notes . gate all pyqs answer
 
A case study of cinema management system project report..pdf
A case study of cinema management system project report..pdfA case study of cinema management system project report..pdf
A case study of cinema management system project report..pdf
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
fundamentals of drawing and isometric and orthographic projection
fundamentals of drawing and isometric and orthographic projectionfundamentals of drawing and isometric and orthographic projection
fundamentals of drawing and isometric and orthographic projection
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
Construction method of steel structure space frame .pptx
Construction method of steel structure space frame .pptxConstruction method of steel structure space frame .pptx
Construction method of steel structure space frame .pptx
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
Cloud-Computing_CSE311_Computer-Networking CSE GUB BD - Shahidul.pptx
Cloud-Computing_CSE311_Computer-Networking CSE GUB BD - Shahidul.pptxCloud-Computing_CSE311_Computer-Networking CSE GUB BD - Shahidul.pptx
Cloud-Computing_CSE311_Computer-Networking CSE GUB BD - Shahidul.pptx
 
Laundry management system project report.pdf
Laundry management system project report.pdfLaundry management system project report.pdf
Laundry management system project report.pdf
 
Digital Signal Processing Lecture notes n.pdf
Digital Signal Processing Lecture notes n.pdfDigital Signal Processing Lecture notes n.pdf
Digital Signal Processing Lecture notes n.pdf
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
Hall booking system project report .pdf
Hall booking system project report  .pdfHall booking system project report  .pdf
Hall booking system project report .pdf
 
Scaling in conventional MOSFET for constant electric field and constant voltage
Scaling in conventional MOSFET for constant electric field and constant voltageScaling in conventional MOSFET for constant electric field and constant voltage
Scaling in conventional MOSFET for constant electric field and constant voltage
 
Danfoss NeoCharge Technology -A Revolution in 2024.pdf
Danfoss NeoCharge Technology -A Revolution in 2024.pdfDanfoss NeoCharge Technology -A Revolution in 2024.pdf
Danfoss NeoCharge Technology -A Revolution in 2024.pdf
 
shape functions of 1D and 2 D rectangular elements.pptx
shape functions of 1D and 2 D rectangular elements.pptxshape functions of 1D and 2 D rectangular elements.pptx
shape functions of 1D and 2 D rectangular elements.pptx
 
Natalia Rutkowska - BIM School Course in Kraków
Natalia Rutkowska - BIM School Course in KrakówNatalia Rutkowska - BIM School Course in Kraków
Natalia Rutkowska - BIM School Course in Kraków
 
NO1 Pandit Amil Baba In Bahawalpur, Sargodha, Sialkot, Sheikhupura, Rahim Yar...
NO1 Pandit Amil Baba In Bahawalpur, Sargodha, Sialkot, Sheikhupura, Rahim Yar...NO1 Pandit Amil Baba In Bahawalpur, Sargodha, Sialkot, Sheikhupura, Rahim Yar...
NO1 Pandit Amil Baba In Bahawalpur, Sargodha, Sialkot, Sheikhupura, Rahim Yar...
 

NOISE CANCELATION USING MATLAB

  • 1. Introduction: In our increasingly mobile society, individuals are prone to doing just about everything on the move. Listening to music is certainly not an exception. However, when one listens to music away from the home, one necessarily has less control over noise exposure. Airplane, bus and car engines are the most common noise distractions as one travels. Lawnmower engines, others’ speech and music are also frequently encountered. Surely, there is considerable benefit in obtaining headphones that could perform active noise cancellation – be able to filter out noise as one encounters it. What is Noise Cancellation? Noise cancellation is an active or passive means of reducing sound emissions, often for personal comfort, environmental considerations or legal compliance. Active noise control is sound reduction using a power source. Passive noise control is sound reduction by noise- isolating materials such as insulation, sound-absorbing tiles, or a muffler rather than a power source. Active noise canceling is best suited for low frequencies. For higher frequencies, the spacing requirements for free space and zone of silence techniques become prohibitive. In acoustic cavity and duct based systems, the number of nodes grows rapidly with increasing frequency, which quickly makes active noise control techniques unmanageable. Passive treatments become more effective at higher frequencies and often provide an adequate solution without the need for active control. Adaptive Noise Cancellation (ANC) Method: Sound is a pressure wave, which consists of alternating periods of compression and rarefaction. A noise-cancellation speaker emits a sound wave with the same amplitude but with inverted phase (also known as antiphase) to the original sound. The waves combine to form a new wave, in a process called interference, and effectively cancel each other out – an effect which is called destructive interference.
  • 2. Fig. 1: Destructive Interference Modern active noise control is generally achieved through the use of analog circuits or digital signal processing. Adaptive algorithms are designed to analyze the waveform of the background noise, then based on the specific algorithm generate a signal that will either phase shift or invert the polarity of the original signal. This inverted signal (in antiphase) is then amplified and a transducer creates a sound wave directly proportional to the amplitude of the original waveform, creating destructive interference. This effectively reduces the volume of the perceivable noise. A noise-cancellation speaker may be co-located with the sound source to be attenuated. In this case it must have the same audio power level as the source of the unwanted sound. Alternatively, the transducer emitting the cancellation signal may be located at the location where sound attenuation is wanted (e.g. the user's ear). This requires a much lower power level for cancellation but is effective only for a single user. Noise cancellation at other locations is more difficult as the three-dimensional wave fronts of the unwanted sound and the cancellation signal could match and create alternating zones of constructive and destructive interference, reducing noise in some spots while doubling noise in others. In small enclosed spaces (e.g. the passenger compartment of a car) global noise reduction can be achieved via multiple speakers and feedback microphones, and measurement of the modal responses of the enclosure. Fig. 2: Graphical depiction of active noise reduction
  • 3. Algorithm: There are several algorithms used to calculate the “anti-noise” signal. The Least Mean Square (LMS) algorithm is comprised of two processes – a filtering process producing the output signal and the estimation error, and an adaptive process responsible for the automatic adjustment of filter tap weights. Fig. 3: Sample ANC flowchart with LMS Code in MATLAB: %noise cancellation clc; clear all; order=2; size=2; %time duration of inputs fs=8192; %digital sampling frequency t=[0:1/fs:size]; N=fs*size; %size of inputs f1=35/2; %frequency of voice f2=99/2; %frequency of noise voice=cos(2*pi*f1*t); subplot(4,1,1) plot(t,voice); title('voice (do not have access to)') noise=cos(2*pi*f2*t.^2); %increasing frequency noise
  • 4. %noise=.1*rand(1,length(voice)); %white noise primary=voice+noise; subplot(4,1,2) plot(t,primary) title('primary = voice + noise (input1)') ref=noise+.25*rand; %noisy noise subplot(4,1,3) plot(t,ref) title('reference (noisy noise) (input2)'); w=zeros(order,1); mu=.006; for i=1:N-order buffer = ref(i:i+order-1); %current 32 points of reference desired(i) = primary(i)-buffer*w; %dot product reference and coeffs w=w+(buffer.*mu*desired(i)/norm(buffer))';%update coeffs end subplot(4,1,4) plot(t(order+1:N),desired) title('Adaptive output (hopefully it is close to "voice")') Fig. 4: Output in MATLAB
  • 5. Application: It can be used in Noise-cancelling headphones which are headphones that reduce unwanted ambient sounds using active noise control. This is distinct from passive headphones which, if they reduce ambient sounds at all, use techniques such as soundproofing. To cancel the lower-frequency portions of the noise, noise-cancelling headphones use active noise control. They incorporate a microphone that measures ambient sound, generate a waveform that is the exact negative of the ambient sound, and mix it with any audio signal the listener desires. Drawbacks: 1. Active noise control requires power, usually supplied by a USB port or a battery that must occasionally be replaced or recharged. 2. Any battery and additional electronics may increase the size and weight of the headphones compared to regular headphones. 3. The noise-cancelling circuitry may reduce audio quality and add high-frequency hiss, though reducing the noise may result in higher perceived audio quality. Conclusion: Noise cancellation makes it possible to listen to music without raising the volume excessively. It can also help a passenger sleep in a noisy vehicle such as an airliner. In the aviation environment, noise-cancelling headphones increase the signal-to-noise ratio significantly more than passive noise attenuating headphones or no headphones, making hearing important information such as safety announcements easier. Noise-cancelling headphones can improve listening enough to completely offset the effect of a distracting concurrent activity.