代码搜索:

找到约 10,000 项符合「」的源代码

代码结果 10,000
www.eeworm.com/read/392021/8366859

m dsdemo7.m

% demonstrate findPIS addPIS; % Add the PosInvSet directory to MATLAB's path clear; if exist('qhull')==3 clc; fprintf(1,'\t\tInvariant Set for MOD2 (findPIS) \n\n'); order=2; dsistest
www.eeworm.com/read/192685/8366860

txt cab文件是怎么制作的.txt

VB提 供 了 其 自 带 控 件 的 .cab文 件 , 对 于 你 自 己 设 计 的 文 件 , 可 以 使 用 Setup Wizard制 作 安 装 程 序 , 这 样 会 自 动 生 成 .cab文 件 , (http://www.zealsoftstudio.com/articles/vbactivex/)一 书 的 “ 第 十 五 章 ActiveX控 件 的 分 发 ” 。 虽
www.eeworm.com/read/192685/8366861

txt vb6中开发activex控件能否继承某个已有的类.txt

严 格 地 说 , ActiveX控 件 是 没 有 继 承 关 系 的 , 这 与 使 用 什 么 开 发 工 具 无 关 。 如 果 你 的 命 令 按 钮 同 CommandButton非 常 将 近 的 话 , 可 以 这 样 做 : 1、 在 UserControl上 放 置 一 个 CommandButton; 2、 在 UserControl_Resize中
www.eeworm.com/read/292216/8366862

dat trace1.dat

1.0000000e+000 1.1800000e+002 3.2000000e+001 3.0000000e+002 0.0000000e+000 0.0000000e+000 0.0000000e+000 0.0000000e+000 2.0000000e+000 1.1800004e+002 3.2000000e+001 3.0000000e+002 4.000
www.eeworm.com/read/392021/8366863

m synthesizentf.m

function ntf = synthesizeNTF(order,osr,opt,H_inf,f0) %ntf = synthesizeNTF(order=3,osr=64,opt=0,H_inf=1.5,f0=0) %Synthesize a noise transfer function for a delta-sigma modulator. % order = order of the
www.eeworm.com/read/192685/8366864

txt 怎么在自制的(简单)控件上加方法和事件.txt

使 用 菜 单 的 “ 工 具 |添 加 过 程 ” 可 以 为 控 件 加 上 方 法 和 时 间 。 方 法 比 较 简 单 , 就 是 普 通 的 过 程 或 函 数 。 事 件 需 要 在 适 当 的 时 候 使 用 RaiseEvent激 发 。
www.eeworm.com/read/392021/8366865

m contents.m

% Delta-Sigma Toolbox % Version 7.2 2008-02-08 % R. Schreier, Analog Devices Inc. % % Consult the DSToolbox.pdf and OnePageStory.pdf % files for more complete documentation. % % % Modulator synthesis
www.eeworm.com/read/192685/8366866

txt 能否为自定义的类定义事件.txt

在 类 中 直 接 定 义 事 件 就 成 了 。 class名 : someclass public event someevent(arg1 as sometype) public sub somesub() 'do something here raiseevents someevent(arg1) e
www.eeworm.com/read/392021/8366867

m lcobj.m

function [objective,constraints] = LCObj(x,param,dbg) % LCObj Compute the objective function % and the constraints: r-rmax, Hinf-Hinfdesired, |stf|-1. if dbg fprintf(1, 'x = ['); fprintf(1,
www.eeworm.com/read/192685/8366868

txt 怎样把delphi的vcl控件转变成vb的控件.txt

只 要 VCL控 件 是 基 于 Delphi的 TWinControl的 , 一 般 你 就 可 以 将 该 控 件 编 译 为 ActiveX控 件 , 然 后 在 VB中 使 用 。 但 是 其 他 类 型 的 控 件 , Delphi无 法 编 译 为 ActiveX控 件 , 无 法 在 VB直 接 调 用 。