代码搜索:

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

代码结果 10,000
www.eeworm.com/read/292216/8366849

m trace1.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % 航迹发生器 % % 输入参数: % t 仿真时间 % T 仿真步长 % atti 横滚、俯仰、航向(单位:度) % atti_
www.eeworm.com/read/192685/8366850

txt 如何在ocx中实现picture功能.txt

如 果 你 的 Picture属 性 和 Image的 Picture属 性 对 应 , 你 可 以 在 ActiveX控 件 接 口 向 导 中 将 你 的 OCX的 Picture属 性 映 射 到 Image的 Picture属 性 。 一 般 的 , 如 果 你 要 实 现 一 个 Picture属 性 , 主 要 将 这 个 属 性 的 类 型 定 义 为 Picture类
www.eeworm.com/read/392021/8366851

m calculatesnr.m

function snr = calculateSNR(hwfft,f,nsig) % snr = calculateSNR(hwfft,f,nsig=1) Estimate the signal-to-noise ratio, % given the in-band bins of a (Hann-windowed) fft and % the location of the input s
www.eeworm.com/read/192685/8366852

txt 如何修改自编控件的名称.txt

你 可 以 在 UserControl的 设 计 窗 口 修 改 Name属 性 。
www.eeworm.com/read/392021/8366853

c simulatedsm.c

/* simulateDSM.c - A MEX-file for simulating a delta-sigma modulator %[v,xn,xmax,y] = simulateDSM( u, ABCD, nlev[2], x0[0] ) % or %[v,xn,xmax,y] = simulateDSM( u, ntf, nlev[2], x0[0] ) % %Compute the
www.eeworm.com/read/192685/8366854

txt 如何制作一个能将背景设为透明的容器控件.txt

目 前 的 VB还 做 不 出 背 景 设 为 透 明 的 容 器 控 件 , 理 由 就 是 放 上 去 的 其 他 控 件 看 不 见 了 。
www.eeworm.com/read/392021/8366855

m clans5.m

function NTF=clans5(order,OSR,Q,rmax,opt) %Version of clans for MATLAB 5 or lower % Create the initial guess NTF = synthesizeNTF(order,OSR,opt,1+Q,0); Hz = NTF.z{1}; x = zeros(1,order); odd = rem(ord
www.eeworm.com/read/192685/8366856

txt 已注册的共享控件安装到client 时是否也要注册.txt

ActiveX控 件 的 许 可 包 括 设 计 时 许 可 和 运 行 时 许 可 。 设 计 时 许 可 允 许 你 在 设 计 程 序 时 在 集 成 环 境 中 使 用 控 件 。 运 行 时 许 可 允 许 编 译 后 的 程 序 使 用 控 件 。 一 般 你 购 买 了 软 件 后 , 厂 商 同 时 给 你 这 两 个 许 可 。 当 你 编 译 程 序 后 , VB把 运 行 许
www.eeworm.com/read/392021/8366857

m figuremagic.m

function figureMagic( xRange, dx, xLab, yRange, dy, yLab, size, name ) %figureMagic( xRange, dx, xLab, yRange, dy, yLab, size, name ) if nargin >=8 set(gcf,'MenuBar','none'); set(gcf,'NumberT
www.eeworm.com/read/192685/8366858

txt vc写了个com组件,但在vb中调用时提示z类型不匹配.txt

把 z定 义 为 Long型 试 一 下 。