代码搜索:Simple

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

代码结果 10,000
www.eeworm.com/read/261343/11653551

y tiny.y

/****************************************************/ /* File: tiny.y */ /* The TINY Yacc/Bison specification file */ /* Compiler Construction: Princi
www.eeworm.com/read/260341/11731244

y tiny.y

/****************************************************/ /* File: tiny.y */ /* The TINY Yacc/Bison specification file */ /* Compiler Construction: Princi
www.eeworm.com/read/259900/11758571

test-poptrc

test1 alias --simple --arg2 test1 alias --two --arg1 --arg2 alias test1 alias --takerest -- test1 alias -T --arg2 test1 alias -O --arg1 test1 alias --grab --arg2 "'foo !#:+'" test1 alias --grabbar --
www.eeworm.com/read/155592/11861863

y tiny.y

/****************************************************/ /* File: tiny.y */ /* The TINY Yacc/Bison specification file */ /* Compiler Construction: Princi
www.eeworm.com/read/257078/11950955

m e0554.m

syms T t tao; ut=exp(-t); %定义系统输入 ht=exp(-t/T)/T; %定义系统冲激响应 uh_tao=subs(ut,t,tao)*subs(ht,t,t-tao); %运用变量替换指令形成被积函数 yt=int(uh_tao,tao,0,t); %实施卷积 yt=simple(yt)
www.eeworm.com/read/341680/12073022

m examp2_6.m

syms s; P=(s+3)^2*(s^2+3*s+2)*(s^3+12*s^2+48*s+64) % P 保持原状 simple(P) % 见过一系列化简尝试,得出计算机认为的最简形式 [a,m]=simple(P) % 返回化简方法为因式分解方法,用 factor() 函数将得同样结果 expand(P)
www.eeworm.com/read/341680/12073546

m examp5_4.m

syms t s; f=t^2*exp(-2*t)*sin(t+pi); F=simple(laplace(diff(f,t,5))) F0=laplace(f); simple(F-s^5*F0) ss=0; f1=f; for i=4:-1:0 ss=ss-s^i*subs(f1,t,0); f1=diff(f1,t); end
www.eeworm.com/read/340960/12117484

y tiny.y

/****************************************************/ /* File: tiny.y */ /* The TINY Yacc/Bison specification file */ /* Compiler Construction: Princi
www.eeworm.com/read/340074/12183078

html ch14s05.html

14.5. 类-Linux设备驱动第三版(中文版)
www.eeworm.com/read/151608/12188331

m exm0611_4.m

%exm0611_4.m 用符号计算验证三角等式 。 syms fai1 fai2; y=simple(sin(fai1)*cos(fai2)-cos(fai1)*sin(fai2))