搜索结果
查询Tags标签: overlap,共有 5条记录-
2022年2月10号
题目描述 The cows enjoy mooing at the barn because their moos echo back, although sometimes not completely. Bessie, ever the excellent secretary, has been recording the exact wording of the moo as it goes out and returns. She is curious as to just how…
2022/2/10 23:14:02 人评论 次浏览 -
【语音合成】基于matlab线性预测系数和基音参数语音合成【含Matlab源码 563期】
一、简介 基于matlab线性预测系数和基音参数的语音合成 二、源代码 clear all; clc; close all; [xx, fs, bits] = wavread(C7_2_y.wav); % 读入数据文件 xx=xx-mean(xx); % 去除直流分量 x=xx/max(abs(xx)); …
2021/6/27 17:20:36 人评论 次浏览 -
【语音合成】基于matlab语音信号变调【含Matlab源码 566期】
一、简介 基于matlab语音信号的变调 二、源代码 clear all; clc; close all;[xx,fs]=wavread(C7_4_y.wav); % 读取文件 xx=xx-mean(xx); % 去除直流分量 x=xx/max(abs(xx)); % 幅值归一化 lx=lengt…
2021/6/27 17:20:14 人评论 次浏览 -
【语音合成】基于matlab重叠存储法的信号分帧与还原【含Matlab源码 567期】
一、简介二、源代码 clc clear all close all [s,fs]=wavread(C7_1_y.wav); winlen=256; win=hamming(winlen); overlap=100; f=enframe(s,win,overlap); fn=Filpframe_OverlapS(f,win,overlap); subplot(211) plot(s/max(abs(s))) xlabel(点数) ylabel(幅度) title((a)原…
2021/6/27 11:14:02 人评论 次浏览 -
【语音合成】基于matlab重叠相加法的信号分帧与还原【含Matlab源码 568期】
一、简介二、源代码 clc clear all close all [s,fs]=wavread(C7_1_y.wav); winlen=256; win=hamming(winlen); overlap=100; f=enframe(s,win,overlap); fn=Filpframe_OverlapA(f,win,overlap); subplot(211) plot(s/max(abs(s))) xlabel(点数) ylabel(幅度) title((a)原…
2021/6/27 11:13:58 人评论 次浏览