代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/376593/9313209
m iir_pade.m
function H=iir_pade(r0,a,n,T)
syms x r b; aas=((1-x^2)/(1+b*x)^2)^r; b0=(3+a-2*sqrt(3*a))/(3-a);
aas=subs(aas,{r,b},{r0,b0}); c=taylor(aas,x,2*n);
c=sym2poly(c); c=c(end:-1:1); [n,d]=pa
www.eeworm.com/read/180080/9320459
x lb_bdy2.x
/*
***********************************************************************************************************
Amos
www.eeworm.com/read/180080/9320465
x lb_bdy1.x
/*
***********************************************************************************************************
Amos
www.eeworm.com/read/179954/9328573
plg helloworld.plg
Build Log
--------------------Configuration: HelloWorld - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\TA
www.eeworm.com/read/376114/9330368
c three_hi.c
#include
void three_hellos(void)
{
int counter; // Variable
for (counter = 1; counter
www.eeworm.com/read/179387/9359530
htm hidden_form.htm
function set_variable(value) {
parent.movie.SetVariable("fpvup.filename",value);
}
www.eeworm.com/read/375452/9359760
plg flwparser.plg
Build Log
--------------------Configuration: FlwParser - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\LAN
www.eeworm.com/read/375222/9368174
c globals.c
/*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
globals.c
Abstract:
global variable declarations
Environment:
Kernel mode
Notes:
THIS CODE AND
www.eeworm.com/read/374530/9399624
vhd shift_add.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
entity shift_add is
port(indata:in std_logic_vector(10 downto 0);
clk:in std_logic;
add_en: in std_logic;
www.eeworm.com/read/374530/9400156
vhd fangbo.vhd
--fangbo 模块
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity fangbo is
port(
clk :in std_logic;
dout : out std_logic
);
end fangbo;
arch