代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/292216/8366939
fig trace12.fig
www.eeworm.com/read/392021/8366940
m dsdemo6.m
% Demonstrate Saramaki half-band filter design
if exist('LiveDemo','var') == 0
LiveDemo=0;
end
J = sqrt(-1);
format compact;
clc
fprintf(1,'\t\tHalf-band filter design\n\n');
fprintf(1,'\t\tALPHA
www.eeworm.com/read/292216/8366941
fig trace51.fig
www.eeworm.com/read/192685/8366942
txt 在表头中实现类似于excel的控件.txt
可 以 用 DELPHI中 的 一 个 OCX控 件 : VCI FORMULA ONE LIBRARY。 文 件 名 是 : VCF132.OCX。 它 可 以 达 到 EXCEL那 样 的 效 果 。
www.eeworm.com/read/292216/8366943
fig trace1.fig
www.eeworm.com/read/292216/8366944
fig trace32.fig
www.eeworm.com/read/392021/8366945
m ds_quantize.m
function v = ds_quantize(y,n)
%v = ds_quantize(y,n=2)
%Quantize y to
% an odd integer in [-n+1, n-1], if n is even, or
% an even integer in [-n+1, n-1], if n is odd.
%This definition gives the same s
www.eeworm.com/read/192685/8366946
txt 当点击listbar的按钮时,右侧的界面如何做相应的变化.txt
你 可 以 把 控 件 放 放 在 Picture或 Frame中 。 在 VB中 , Picture或 Frame中 也 可 以 放 置 控 件 , 当 Picture或 Frame隐 藏 时 , 其 中 的 控 件 也 隐 藏 。 将 控 件 放 置 到 Picture的 办 法 为 : 先 选 中 某 个 Picture控 件 , 然 后 从 工 具 箱 中 选 择 一 个 控 件 放 置
www.eeworm.com/read/392021/8366947
m dbv.m
function y=dbv(x)
% dbv(x) = 20*log10(abs(x)); the dB equivalent of the voltage x
y = -Inf*ones(size(x));
if isempty(x)
return
end
nonzero = x~=0;
y(nonzero) = 20*log10(abs(x(nonzero)));
www.eeworm.com/read/192685/8366948
txt 如何使用imgscan.ocx控件.txt
你 这 个 问 题 让 我 感 到 吃 惊 。 ImgScan.ocx就 是 用 来 控 制 扫 描 仪 的 , 如 果 你 没 有 安 装 扫 描 仪 , 那 你 用 它 做 什 么 呢 ? 我 不 知 你 是 从 何 途 径 得 到 这 个 控 制 的 , 这 个 控 制 是 Imaging for Windows 95的 一 部 分 , 现 在 已 经 被 包 括 在 Windows 98中