代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/404739/11479371
m sinc.m
function y = sinc(x)
y = pi * x;
sel = abs(y) > 1e-15;
y(sel) = sin(y(sel)) ./ y(sel);
y(~sel) = 1;
www.eeworm.com/read/403013/11524034
cpp useptrswap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/402117/11543032
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/401480/11557331
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/158240/11631215
m ex5_1.m
x=0:pi/100:2*pi;
y=2*exp(-0.5*x).*cos(4*pi*x);
plot(x,y)
www.eeworm.com/read/157905/11656654
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/157533/11694460
m example1_9.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);
www.eeworm.com/read/346860/11718195
m ex5_1.m
x=0:pi/100:2*pi;
y=2*exp(-0.5*x).*cos(4*pi*x);
plot(x,y)
www.eeworm.com/read/156415/11804946
txt draw.txt
--------------- 函数f -- 设置原点的偏移量
-- rot is -- 设置旋转角度
-- scale is (1, 1); -- 设置横坐标和纵坐标的比例
origin is (333,350);
for T from 0 to 200 step 1 draw (t, 0); -- 横坐标的轨迹
for T fro