代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/341680/12072946
m examp3_43.m
syms u v; syms a b c positive;
x=a*sin(u)*cos(v); y=b*sin(u)*sin(v); z=c*cos(u);
A=diff(y,u)*diff(z,v)-diff(z,u)*diff(y,v);
I=int(int(x^3*A,u,0,pi/2),v,0,2*pi)
www.eeworm.com/read/341680/12073475
m examp5_20.m
syms z
f=sin(z+pi/3)*exp(-2*z)/(z^3*(z-1))
limit(diff(f*z^3,z,2)/prod(1:2),z,0)
limit(f*(z-1),z,1)
www.eeworm.com/read/341613/12075341
m gaussn.m
function g = gaussn(f0,n)
% function gn = gaussn(f0,n) : generates the order n derivative of the
% gaussian window, centered at frequency f0
% The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/255284/12090576
m sinc1.m
clear all
xx = -2*pi:.1:2*pi;
[X,Y] = meshgrid(xx);
z = sqrt(X^2+Y^2);
x = sinc(z);
www.eeworm.com/read/253939/12176334
m gaussn.m
function g = gaussn(f0,n)
% function gn = gaussn(f0,n) : generates the order n derivative of the
% gaussian window, centered at frequency f0
% The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/151608/12188223
m exm0861_1.m
%exm0861_1.m
clear,
t=pi;
cem='[t/2,t*2,sin(t)]';
y=eval(cem)
www.eeworm.com/read/151561/12200825
m digui.m
function f=digui(n,x)
if (n==1)
f=1/2+2/pi*cos(x*pi)
else
f=2*sin(n*pi/2)/n/pi*cos(n*x*pi)+digui(n-1,x);
end
www.eeworm.com/read/253521/12217620
m ex5_1.m
x=0:pi/100:2*pi;
y=2*exp(-0.5*x).*cos(4*pi*x);
plot(x,y)
www.eeworm.com/read/339239/12247328
m exm06021_1.m
t=(0:pi/50:2*pi)';k=0.4:0.1:1;Y=cos(t)*k;plot(t,Y)
www.eeworm.com/read/339239/12247537
m exm05011_2.m
a1=sym([1/3,0.2+sqrt(2),pi]) %产生 符号数组
a2=sym('[1/3,0.2+sqrt(2),pi]') %产生 符号数组
a3=sym('[1/3 0.2+sqrt(2) pi]') %产生 符号数组
a1_a2=a1-a2 %为比较a1,a2