代码搜索:CallBack
找到约 10,000 项符合「CallBack」的源代码
代码结果 10,000
www.eeworm.com/read/147422/5729454
m gain_edit.m
%Callback function for the gain edit box
%Author Karthik
val = eval(get(src_gain_edit,'String'));
set(src_gain_slider,'Value',val);
www.eeworm.com/read/147422/5729456
m gain_slider.m
%Callback function for the gain slider box
%Author Karthik
val = get(src_gain_slider,'Value');
set(src_gain_edit,'String',val);
www.eeworm.com/read/147422/5729458
m tp_slider.m
%Callback function for the tp slider box
%Author Karthik
val = get(src_tp_slider,'Value');
set(src_tp_edit,'String',val);
www.eeworm.com/read/147422/5729459
m ee_edit.m
%Callback function for the ee edit box
%Author Karthik
val = eval(get(src_ee_edit,'String'));
set(src_ee_slider,'Value',val);
www.eeworm.com/read/147422/5729460
m tc_slider.m
%Callback function for the tc slider box
%Author Karthik
val = get(src_tc_slider,'Value');
set(src_tc_edit,'String',val);
www.eeworm.com/read/147422/5729461
m asgain_edit.m
%Callback function for the asgain edit box
%Author Karthik
val = eval(get(src_asgain_edit,'String'));
set(src_asgain_slider,'Value',val);
www.eeworm.com/read/147422/5729463
m ngain_slider.m
%Callback function for the ngain slider box
%Author Karthik
val = get(src_ngain_slider,'Value');
set(src_ngain_edit,'String',val);
www.eeworm.com/read/147422/5729465
m dur_slider.m
%Callback function for the dur slider box
%Author Karthik
val = get(src_dur_slider,'Value');
set(src_dur_edit,'String',val);
www.eeworm.com/read/147422/5729466
m tp_edit.m
%Callback function for the tp edit box
%Author Karthik
val = eval(get(src_tp_edit,'String'));
set(src_tp_slider,'Value',val);
www.eeworm.com/read/147422/5729467
m offset_edit.m
%Callback function for the offset edit box
%Author Karthik
val = eval(get(src_offset_edit,'String'));
set(src_offset_slider,'Value',val);