📄 speech_egg_display.m
字号:
%This is a special data display program to facilitate the comparison
%of a speech signal and the EGG and DEGG
%
close all;
clear;
clc;
global BACK_COLOR TEXT_COLOR LINE_COLOR;
BACK_COLOR=[1 1 1]; %white
TEXT_COLOR=[0 0 0]; %black
LINE_COLOR=[0 0 1]; %blue
principal=figure('Unit','normalized',...
'Position',[0.165 0.08 0.82 0.85],...
'Resize','on',...
'Visible','on',...
'Color',BACK_COLOR,...
'Numbertitle','off',...
'Name','Speech Signal Display');
whitebg(principal,'w');
ax1=axes('Position',[0.05 0.80 0.8 0.1]);
ax2=axes('Position',[0.05 0.55 0.8 0.14]);
ax3=axes('Position',[0.05 0.30 0.8 0.14]);
ax4=axes('Position',[0.05 0.05 0.8 0.14]);
load0_pb=uicontrol('Style','Pushbutton', ...
'String','load speech','Units','normalized','Position',[.88 .92 .095 .03],...
'Callback', 'loadsp1;axes(ax1);plot(signal1,''color'', LINE_COLOR);title(''Speech signal - original'');');
close_pb=uicontrol('Style','Pushbutton', ...
'String','close','Units','normalized','Position',[.88 .01 .095 .03],...
'Callback', 'close_main');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -