mgif_s2e.m

来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 17 行

M
17
字号
%
% Callback function for sliders of MGIF window
% Author : Minkyu Lee
% Date : 7-Oct-1994
%
function [val] = mgif_s2e( txt_h, slide_h)

% Get the value from the slider
val=round( get(slide_h,'Value') );

% Make a string
%S=sprintf('%s', string);
S=sprintf('%d', val);
% Put the string
set(txt_h,'String',S);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?