代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/429840/8786785
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/385103/8819500
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/384979/8826090
asv fitness1.asv
function result=fitness1(x)
%result=abs(x(1)^2-x(2)+1)+abs(x(1)-cos(0.5*pi*x(2)));
result=abs((x(1)-5*x(2))^2)+abs((x(2)-2*x(3))^2)+abs((3*x(1)+x(3))^2);
www.eeworm.com/read/384979/8826091
m fitness1.m
function result=fitness1(x)
%result=abs(x(1)^2-x(2)+1)+abs(x(1)-cos(0.5*pi*x(2)));
result=abs((x(1)-5*x(2))^2)+abs((x(2)-2*x(3))^2)+abs((3*x(1)+x(3))^2);
www.eeworm.com/read/186670/8919377
txt mch02-06.txt
数据点的绘制
x = 0:pi/15:4*pi;
y = exp(2*cos(x));
plot(x,y,'r&')
www.eeworm.com/read/186670/8919385
txt mch02-01.txt
plot函数绘制结果
t = 0:pi/100:2*pi;
y = sin(t);
plot(t,y)
grid on
www.eeworm.com/read/284309/8945602
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/284304/8947679
txt 02-32.txt
% script m-file example: calculate the volume and surface area of a colume
r=1; % the radius of the colume
h=1; % the hight of the colume
s=2*r*pi*h + 2*pi*r^2;
www.eeworm.com/read/284304/8947833
txt 04-47.txt
>> h_f=@(x)(sin(x)-0.6);
>> [x1,y1]=fzero(h_f,[0,pi/2])
>> [x2,y2]=fzero(h_f,[pi/2,pi])
>> [x3,y3]=fzero(h_f,0)
>> [x4,y4]=fzero(h_f,pi)
www.eeworm.com/read/284304/8947920
m ans2_7.m
disp('sin(60)=');
disp(sind(60));
disp('exp(3)=');
disp(exp(3));
disp('cos(3*pi/4)=');
disp(cos(3*pi/4));