代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/426783/8999793
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/426648/9007511
m midpoint.m
function ret=midpoint(a,b)
a=0;b=pi;
mid=(a+b)/2;
ret=(b-a)*f(mid);
end
function ret2=f(x)
ret2=sin(x)/x;
end
www.eeworm.com/read/426642/9007582
m midpoint.m
function ret=midpoint(a,b)
a=0;b=pi;
mid=(a+b)/2;
ret=(b-a)*f(mid);
end
function ret2=f(x)
ret2=sin(x)/x;
end
www.eeworm.com/read/426630/9010247
c ex17.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/426535/9014777
m ex0609.m
%例6-9 创建元胞数组
A(1,1) = {[1 4 3; 0 5 8; 7 2 9]};
A(1,2) = {'Anne Smith'};
A(2,1) = {3+7i};
A(2,2) = {-pi:pi/10:pi};
A
B(3,3)={'Hello'};
B
C=cell(3,4);
C{2,3}=rand(2);
C
whos
www.eeworm.com/read/283509/9014996
m a_sub.m
function a=a_sub(a1,a2)
%
% A=A_SUB(A1,A2)
% Subtract two angles so that the result
% always remains between +/- pi
%
% simple function to get angle subtraction consistent
a=a1-a2;
%
www.eeworm.com/read/283509/9015053
m a_add.m
function a=a_add(a1,a2)
%
% A=A_ADD(A1,A2)
% Add two angles so that the result
% always remains between +/- pi
%
a=a1+a2;
% get to within 2pi of the right answer
a=a - (2.0*pi*fix(a/(2.0*
www.eeworm.com/read/426535/9015067
m ex2304.m
%例23-4 极坐标绘图函数polar
theta=0:0.05*pi:2*pi;
r1=sin(theta);
r2=cos(theta);
polar(theta,r1,theta,r2)
polar(theta,[r1;r2])
polar([theta' theta'],[r1' r2'])
www.eeworm.com/read/426535/9015167
m mcc_test.m
function y=mcc_test(t)
t=0:0.001:t;
y=sin(2*pi*50*t);
plot(y);
www.eeworm.com/read/426535/9015698
m ex2110.m
%例21-10:计算三重定积分。
F = @(x,y,z)y*sin(x)+z*cos(x);
Q = triplequad(F,0,pi,0,1,-1,1);
Q