필터 지우기
필터 지우기

Which parameters ore metrics can be used to differentiate two simple speach signals recorded using the following code?

조회 수: 1 (최근 30일)
I have used the following code to record and write speech signals
clc
clear all
close all
% Record the voice password for 3.55 seconds.
record = audiorecorder;
disp('===============Speak Password============')
recordblocking(record,3.5);
disp('===============End of Recording==========');
% Play back the recording.
play(record);
% Store data in an array.
audiodata = getaudiodata(record);
% Plot the waveform.
plot(audiodata);
filename = 'key_audio.wav';
audiowrite(filename, audiodata, record.SampleRate)
how to differentiate two speech signals recorded here

답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by