代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/452050/7451062
cc 2514251_ac_0ms_312k.cc
#include
using namespace std;
char map[9][9];
char lil[] = "v";
int pi, pj;
int mov[][2] = {{0,-1},{-1,0},{0,1},{1,0}};
void move(int step,int ini)
{
int i, j;
int a, b;
www.eeworm.com/read/452050/7451063
cpp 2513101_re.cpp
#include
using namespace std;
char map[10][10];
char lil[] = "v";
int pi, pj;
int mov[][3] = {{0,-1},{-1,0},{0,1},{1,0}};
void move(int step,int ini)
{
int i, j;
int a, b;
www.eeworm.com/read/449044/7519519
m lag.m
function s=lagrange(t,n)
for i=1:n
h=2*pi/n;
x(i)=i*h;
end
s=0;
for i=1:n
l=1;
for j=1:n
if j~=i
l=l*(t-x(j))/(x(i)-x(j));
end
end
s=s+
www.eeworm.com/read/448743/7526289
m t2_2_2.m
clear;close;clc;
%基本数据
T0=4;
ta=1;
A=1;
w1=2*pi/T0;
hold on;
%设置图像格式
axis([-5.5,5.5,-1,1.5]);grid on;
%画出原图
for n=-1:1
x=-ta+n*T0:0.01:ta+n*T0;
y=A*ones(1,length(x));
plot(x,y
www.eeworm.com/read/448663/7527483
m circle.m
%circle.m
clf;
r=2;
t=0:pi/100:2*pi;
x=r*exp(i*t);
plot(x,'r*');
axis('square')
www.eeworm.com/read/446793/7564913
m mom2.m
%%%%矩量法解Hallen方程,求直线天线表面电流分布%%%%%
clear all
clc
ep=8.854e-12;%介电常数
c=3e8;%光速
ft=3e8;%频率
wt=2*pi*ft;%角频率
lamda=c/ft;%波长
a=0.0001*lamda;%天线半径
L=1.7*lamda;%天线长度
k=2*pi/lamda;%波数
V=1;%激励电压
no=
www.eeworm.com/read/446689/7571235
m lag.m
function s=lagrange(t,n)
for i=1:n
h=2*pi/n;
x(i)=i*h;
end
s=0;
for i=1:n
l=1;
for j=1:n
if j~=i
l=l*(t-x(j))/(x(i)-x(j));
end
end
s=s+
www.eeworm.com/read/446689/7571336
m lag.m
function s=lagrange(t,n)
for i=1:n
h=2*pi/n;
x(i)=i*h;
end
s=0;
for i=1:n
l=1;
for j=1:n
if j~=i
l=l*(t-x(j))/(x(i)-x(j));
end
end
s=s+
www.eeworm.com/read/444759/7607521
m 3-6.m
%例程3-6 产生Dirichlet函数波形
t=[-4*pi:0.1:4*pi];
x=diric(t,7);
y=diric(t,6);
subplot(2,1,1);
plot(t,x);
subplot(2,1,2);
plot(t,y);