photo

Faisal Alrafaei


Last seen: 4 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

6 个提问
0 个回答

排名
161,850
of 300,081

声誉
0

贡献数
6 个提问
0 个回答

回答接受率
33.33%

收到投票数
0

排名
 of 20,868

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 167,273

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


when I run this code it gives me an error message but I can not figure out what is the problem?
clc clear all % Record your voice for 5 seconds. radiorec = audiorecorder; disp('Start speaking.') recordblocking(radiorec,...

4 years 前 | 1 个回答 | 0

1

个回答

提问


How can I plot the magnitude spectrum for these three filters?
%Low-pass Filter B_lp = designfilt('lowpassfir', 'FilterOrder', 64, 'CutoffFrequency', 3e3, 'SampleRate', fs); [b, a] = tf(B_l...

4 years 前 | 1 个回答 | 0

1

个回答

提问


How can I get the transfer function for the three filters in this code? and how to plot the magnitude spectrum for the filters transfer function?
%Part 1 - (a, b, c) [x, fs] = audioread('audio.wav') x = x(:, 1); n = length(x) t = (0:n-1)/fs n/fs %Figure 1 - Time domai...

4 years 前 | 1 个回答 | 0

1

个回答

提问


I want to edit this code to plot a time domain graph for the LPF, HPF, BPF filtered audio signal, how can I do it?
%Part 1 - (a, b, c) [x, fs] = audioread('audio.wav') x = x(:, 1); n = length(x) t = (0:n-1)/fs n/fs %Figure 1 - Time domai...

4 years 前 | 0 个回答 | 0

0

个回答

提问


i have a code for a .wav file which then outputs 3 graphs, but now i want to edit the code and apply three filters (LPF,HPF,BPF) how can i do that and also output the TF?
TF is the transfer function LPF is low pass filter HPF is high pass filter BPF is band pass filter this my code now: [x, ...

4 years 前 | 1 个回答 | 0

1

个回答

提问


i am trying to write a MATLAB code to process two different .wav files the first one include a recording for the word “audio” in an approximately 5 seconds length .wav file?
recObj = audiorecorder; disp('Start speaking.') recordblocking(recObj, 5); disp('End of Recording.'); y = getaudiodata(recOb...

4 years 前 | 1 个回答 | 0

1

个回答