代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/403498/11515283
m bp_nn.m
x1=0:0.1:pi/2;
x2=pi/2:0.1:pi;
x3=pi:0.1:1.5*pi;
x4=1.5*pi:0.1:2*pi;
y1=x1-pi/2+1;
y2=sin(x2);
y3=2-2/pi*x3;
y4=sin(x4);
x=[x1,x2,x3,x4];
y=[y1,y2,y3,y4];
ma=max(x);
mi=min(x);
len=leng
www.eeworm.com/read/402094/11543210
m beamform.m
function phi=beamform(Y,L,d)
%
% The Beamforming method for direction of arrival estimation
%
% phi=beamform(Y,L,d);
%
% Y
www.eeworm.com/read/401335/11559173
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图
www.eeworm.com/read/401335/11559181
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/400641/11571181
m untitled.m
for m=3:15;
for j=2:m-1
a(j-1)=((j-1)*cos((pi/6)-((j-1)*pi)/(6*(m-1))));
end
sum=a(j-1);
j=1;
while j
www.eeworm.com/read/400641/11571182
m untitled11.m
for m=6:15;
for j=1:m-2
a(j)=(j*cos((pi/6)-(j*pi)/(6*(m-1))));
end
sum=a(j);
a(1:j);
j=0;
while j
www.eeworm.com/read/400641/11571183
m untitled33.m
for m=6:15;
for j=1:m-2
a(j)=(j*cos((pi/6)-(j*pi)/(6*(m-1))));
end
%s=a(j);
b=a(1:j);
b=b';
S=sum(b);
%j=0;
%while j
www.eeworm.com/read/400579/11572546
m testexpdesa.m
%function testPDESA
%测试仿真exp(-t)*sin( 2*pi*50*t)数据的包络
clear
clc
fs=5120;
Ns=2048;
t=[0:Ns-1]/fs;
x=exp(-5*t).*cos(2*pi*20*t).*sin( 2*pi*500*t);%+cos(2*pi*35*t).*sin( 2*pi*300*t);
x2=exp(-5*t)
www.eeworm.com/read/400205/11580777
m gbyang.m
t=0: pi/20: 2*pi;
[x, y]=meshgrid(t);
subplot(2,2,1);
plot(sin(t),cos(t));
axis equal;
subplot(2,2,2);
z=sin(x)+cos(y);
plot(t,z);
axis([0 2*pi -2 2]);
subplot(2,2,3);
z=sin(x);
z=sin
www.eeworm.com/read/262216/11601063
m loop.m
%This program print pattern for Loop Antenna by giving the radius of your
%Loop and the wavelength you work with
%Have a nice Pattern "Arabia Tech"
lamda=input('enter the value of wave length= ');