代码搜索:CallBack
找到约 10,000 项符合「CallBack」的源代码
代码结果 10,000
www.eeworm.com/read/140057/13112732
m ex0431.m
%创建菜单并添加回调函数
figure
h_fig=gcf
h_menu=uimenu(h_fig,'label','Paint') %创建菜单Paint
h_menu1=uimenu(h_menu,'label','Circle') %创建Paint的子菜单Circle
h_menu2=uimenu(h_menu,'label','Color') %创建Paint的子菜单
www.eeworm.com/read/241836/13114039
m levelnet.m
%***********************%***********************
%adjust_1d.m
%***********************%***********************
clear;
clc;
global pathname net_name s_datafile c1_datafile c2_datafile c3_datafile
www.eeworm.com/read/241836/13114081
m levelnet.m
%***********************%***********************
%adjust_1d.m
%***********************%***********************
clear;
clc;
global pathname net_name s_datafile c1_datafile c2_datafile c3_datafile
www.eeworm.com/read/241225/13163206
m mmctl2.m
% mmctl2.m
Hc_boxon = uicontrol(gcf,'Style','radio',...
'Position',[20 45 100 20],...
'String','Set Box On',...
'Value',0,...
'CallBack',[...
's
www.eeworm.com/read/241225/13163218
m mmenu3.m
% mmenu3.m
Hm_top = uimenu('Label','Example');
Hm_box = uimenu(Hm_top,'Label','Axis Box',...
'CallBack',[...
'if strcmp(get(gca,''Box''),''on''),',...
'set(g
www.eeworm.com/read/241225/13163436
m mmenu2.m
% mmenu2.m
Hm_top = uimenu('Label','Example');
Hm_box = uimenu(Hm_top,'Label','Axis Box',...
'CallBack',[...
'if strcmp(get(gca,''Box''),''on''),',...
'set(g
www.eeworm.com/read/138798/13212399
m demtrain.m
function demtrain(action);
%DEMTRAIN Demonstrate training of MLP network.
%
% Description
% DEMTRAIN brings up a simple GUI to show the training of an MLP
% network on classification and regressi
www.eeworm.com/read/138690/13224553
h messagebox.h
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applica
www.eeworm.com/read/138638/13227281
h tree.h
/*
** Interface for a binary search tree module
*/
#define TREE_TYPE int /* Type of value in the tree */
/*
** insert
** Add a new value to the tree. The argument is the value
** to be add
www.eeworm.com/read/240028/13239812
hpp tut_restartable.hpp
#ifndef TUT_RESTARTABLE_H_GUARD
#define TUT_RESTARTABLE_H_GUARD
#include
#include
#include
#include
/**
* Template Unit Tests Framework for C++.
* ht