필터 지우기
필터 지우기

How to create a MATLAB code for generating audio sine wave signal of frequency ranges from 1Hz to 15kHz and plot it on real time.

조회 수: 10 (최근 30일)
I use MATLAB for Engineering computations for almost 3 years, however I don't have any idea how to "How to create a MATLAB code for generating audio sine wave signal of frequency ranges from 1Hz to 15kHz and plot it on real time." I request the staff to help me in generating this code.

답변 (2개)

Geoff Hayes
Geoff Hayes 2021년 9월 28일
Zafar - see the relevant parts of the noisy signal example on how to generate a sine wave with a particular frequency. You will need to determine how you transition between the different frequencies (or are they separate plots?) and what the "real time" component is.
  댓글 수: 1
Zafar Ahmad
Zafar Ahmad 2021년 9월 29일
Sir, the example 'noisy signal' is about creating signal and it's Fourier transform etc, I want an audio tune signal having frequency ranges from 1Hz to 15kHz.

댓글을 달려면 로그인하십시오.


jibrahim
jibrahim 2021년 9월 29일
Zafar, you can achieve this with audioOscillator and timescope. Here is an example.
% Generate and visualize a sine wave with variable frequency
osc = audioOscillator('sine');
scope = timescope('SampleRate',osc.SampleRate,...
'TimeSpanSource','property','TimeSpan',0.1, ...
'YLimits',[-1.5 1.5],...
'Title','Variable-Frequency Sine Wave');
counter = 0;
while (counter < 1e4)
counter = counter + 1;
scope(osc());
if mod(counter,1000)==0
osc.Frequency = osc.Frequency + 50;
end
end
  댓글 수: 2
Zafar Ahmad
Zafar Ahmad 2021년 10월 7일
I tried using multiple approaches to feed (an audio tune signal genrated in the same code) to an audioOscillator, however it accepts by default it's own wave forms sine wave, square wave and saw tooth wave from. How I can feed my own audio tune signal to generate a dynamic wave from?
jibrahim
jibrahim 2021년 10월 7일
편집: jibrahim 2021년 10월 7일
Hi Zafar,
If you want to generate a periodic signal based on a custom wave, then I suggest you take a look at wavetableSynthesizer.
If your signal is a long MATLAB vector, and you want to stream it, you can pass it one frame at a time to the for loop. Something like this:
x = randn(1e6,1); % let's say this is your signal
frameLength = 1024;
counter = 1;
while (counter < floor(size(x,1)/frameLength))
frame = x((counter-1)*frameLength+1:counter*frameLength);
counter = counter + 1;
scope(frame);
end

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Pulse and Transition Metrics에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by