代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/429840/8786272
m examp8_19.m
maple('with(numtheory):'); f=maple(['cfe:=cfrac(pi,20)'])
n=maple('nthnumer','cfe',4); d=maple('nthdenom','cfe',4); [vpa(n),vpa(d)]
www.eeworm.com/read/429840/8786593
m examp3_33.m
f=inline('cos(15*x)','x');
tic, S=quadl(f,0,3*pi/2,1e-15), toc
S1=quad(f,0,3*pi/2) % 采用默认精度
S1=quad(f,0,3*pi/2,1e-15)
www.eeworm.com/read/429840/8786816
m examp5_13.m
syms t k; syms a positive
f1=t; f2=a-t;
Fs=int(f1*sin(k*pi*t/a),t,0,a/2)+int(f2*sin(k*pi*t/a),t,a/2,a);
simple(Fs)
www.eeworm.com/read/429840/8786905
m examp10_19.m
syms t; f=(1-t^2)*exp(-t^2/2)/sqrt(2*pi);
ezplot(f,-4,4), hold on; % 绘制基小波,并保护坐标系不被刷新
ezplot(subs(f,t,t-1),-4,4); ezplot(subs(f,t,t+1),-4,4) % 小波平移
figure; ezplot(f,-4,4), hold on;
ezplot(subs(f
www.eeworm.com/read/285967/8799066
clp fzcmpmod.clp
; fzCmpmod.clp
;
; An implementation of the example given in the paper 'A Compiler for Fuzzy Logic
; Controllers' by P. Bonissone in Fuzzy Eng toward Human Friendly Systems Vol 2
; pp. 706
www.eeworm.com/read/285967/8799081
clp fzcmplr.clp
; fzCmplr.clp
;
; An implementation of the example given in the paper 'A Compiler for Fuzzy Logic
; Controllers' by P. Bonissone in Fuzzy Eng toward Human Friendly Systems Vol 2
; pp. 706-717
www.eeworm.com/read/285822/8815513
m exa060702_2.m
%--------------------------------------------------------------------------
% exa060702_2 , for example 6.6.2 and 6.7.2;
% to test buttord.m and butter.m;
% to design a Butterworth Bandpass digital
www.eeworm.com/read/285822/8815518
m exa020502.m
%-------------------------------------------------------------------------
% exa020502.m, for example 2.5.2 and fig 2.5.6,
%------------------------------------------------------------------------
www.eeworm.com/read/285822/8815557
m exa030202.m
%----------------------------------------------------------------------------
% exa030202, for example 3.2.2 and fig 3.2.4
% to explain how to unwrap the phase
%------------------------------------
www.eeworm.com/read/385103/8819377
m ex2_1.m
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))