代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/392021/8366959
c ai2mif.c
/*************************************************************
AI-2-MIF Version 1.0 DATE: 5/6/94
BY: Deron Jackson
E-mail: (djackson@mit.edu)
Platform: Windows/DOS
www.eeworm.com/read/392021/8366960
m evalrpoly.m
function y = evalRPoly(roots,x,k)
%function y = evalRPoly(roots,x,k=1)
%Compute the value of a polynomial which is given in terms of its roots.
if(nargin
www.eeworm.com/read/392021/8366961
m siunits.m
function [factor,prefix] = SIunits(x)
% [factor,prefix] = SIunits(x)
% The factors and suffixes supported are:
% 1e-3 m milli 1e3 k kilo
% 1e-6 u micro 1e6 M mega
% 1e-9 n nano 1e9 G giga
% 1e-12
www.eeworm.com/read/392021/8366962
m dbp.m
function y=dbp(x)
% dbp(x) = 10*log10(x): the dB equivalent of the power x
y = -Inf*ones(size(x));
if isempty(x)
return
end
nonzero = x~=0;
y(nonzero) = 10*log10(abs(x(nonzero)));
www.eeworm.com/read/192685/8366963
txt 使用mp3player控件,怎样知道mp3文件已经播放完了.txt
你 可 以 使 用 ThreadEnded事 件 , 该 事 件 表 示 MP3播 放 完 毕 。
www.eeworm.com/read/392021/8366964
m simulatehbf.m
function y = simulateHBF(x,f1,f2,mode)
% y = simulateHBF(x,f1,f2,mode=0) Simulate a Saramaki half-band filter.
% The f1 and f2 vectors contain coefficients for the structure.
% (f1 and f2 can also be
www.eeworm.com/read/192685/8366965
txt 如何实现在普通的按扭控件上出现tooltip提示.txt
最 好 是 升 级 到 vb6, 因 为 vb6的 所 有 控 件 都 有 ToolTip属 性 。
如 果 你 坚 持 使 用 vb6, 可 以 借 助 第 三 方 软 件 。 你 可 以 在 http://www.visual-design.se/cc.htm下 载 VDGT控 件 , 其 中 的 VDTTip可 以 用 来 实 现 这 个 功 能 。
www.eeworm.com/read/392021/8366966
m l1norm.m
function h1 = l1norm(H)
% h1 = l1norm(H) Compute the l1-norm of a z-domain transfer function.
if strcmp(H.form,'zp')
sys = zpk(H.zeros,H.poles,H.k,1);
elseif strcmp(H.form,'coeff')
sys = tf(H
www.eeworm.com/read/292214/8366967
asm rev.asm
ORG 0000H
AJMP REV
REV:MOV TOMD,#20H
MOV TH1,#F3H
MOV TL1,#F3H
SETB TR1
MOV SCON,#50H
MOV PCON,#80H
RPT:MOV R5,#00H
;MOV R4,#00H
MOV R0,#30H
TR0:
www.eeworm.com/read/392021/8366968
m outsideconvex.m
function i=outsideConvex(x,n,o,tol)
% function i=outsideConvex(x,n,o,tol). Determine which points are outside
% the convex object described by n'*x+o