代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/435844/7782837
m 4_12.m
t=linspace(0,4*pi,100);
x=sin(t)
for N=1:4
a=4;
y=sin(N*t+a);
subplot(2,2,N);
plot(x,y)
end
N=2;i=1;
for a=[0,pi/3,pi/2,pi]
y=sin(N*t+a);
subplot(2,2,i);
plot
www.eeworm.com/read/435844/7782873
m exm075_1.m
%exm075_1.m
clear,
t=pi;
eval('theta=t/2,y=sin(theta)');
www.eeworm.com/read/435547/7790738
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/299682/7839488
m wide.m
function h=wide(w,M)
a=(M-1)/2;
n=[0:1:(M-1)];
m=n-a+eps;
h=sin(w*m)./(pi*m);
www.eeworm.com/read/433368/7936937
m e0206.m
b=[1+2*i,2+3*i;2-i,3-2*i]
real(b)
imag(b)
abs(b)
angle(b)
angle(b)*180/pi
conj(b)
www.eeworm.com/read/198282/7942198
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/198282/7942851
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/297846/7992739
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/398034/8009046
m sa_ex7_12.m
% MUSIC AOA estimation for a M = 6 element array with noise variance = .1
% use time averages instead of expected values by assuming ergodicity of the mean and
% ergodicity of the correlation.
www.eeworm.com/read/398034/8009063
m sa_ex7_14.m
% root-Min-Norm AOA estimation for a M = 4 element array with noise variance = .1
% use time averages instead of expected values by assuming ergodicity of the mean and
% ergodicity of the correlati