代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/477921/6726024
m m_exam7.m
% example 7
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y,x,z);
www.eeworm.com/read/477110/6747919
m rttrdemo.m
%RTTRDEMO Transforms and quaternion demo
% Copyright (C) 1993-2002, by Peter I. Corke
% $Log: not supported by cvs2svn $
% Revision 1.2 2002-04-01 11:47:18 pic
% General cleanup of code: help comme
www.eeworm.com/read/408213/11401458
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/408213/11401664
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/407392/11419937
m fitfunction.m
function value=fitfunction(sol)
%
x1=sol(1);
x2=sol(2);
value=(x1*x1+x2*x2)/2+cos(20*pi*x1)*cos(20*pi*x2)+2;
www.eeworm.com/read/406944/11432006
m corrcoe_1d.m
function out=CorrCoe_1d(AngleSpread)
out=exp(-j*2*pi*1*sin(AngleSpread));
www.eeworm.com/read/406944/11432015
m corrcoe_3d.m
function out=CorrCoe_3d(AngleSpread)
out=exp(-j*2*pi*3*sin(AngleSpread));
www.eeworm.com/read/406944/11432025
m corrcoe_2d.m
function out=CorrCoe_2d(AngleSpread)
out=exp(-j*2*pi*2*sin(AngleSpread));
www.eeworm.com/read/405084/11472085
m sinc1.m
clear all
xx = -2*pi:.1:2*pi;
[X,Y] = meshgrid(xx);
z = sqrt(X^2+Y^2);
x = sinc(z);