代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/480149/6677659
m grid542.m
function grid542
X=0:0.1*pi:2*pi;
Y=sin(X);
plot(X,Y);
grid on
www.eeworm.com/read/480149/6677680
m cylinder532.m
function cylinder532
figure(1)
cylinder
figure(2)
t = 0:pi/10:2*pi;
[X,Y,Z] = cylinder(2+cos(t));
surf(X,Y,Z)
www.eeworm.com/read/480149/6677697
m polar533.m
function polar533
rho0=1;
theta=0:pi/20:4*pi;
rho=rho0+theta*rho0;
polar(theta,rho,':')
www.eeworm.com/read/478650/6712617
m ex0202.m
%用linspace和logspace函数生成行向量
x1=linspace(0,2*pi,5) %从0到2π等分成5个点
x2=logspace(0,2,3) %从1到100对数等分成3个点
www.eeworm.com/read/477921/6726104
asv m_exam8.asv
% example 9
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y,'g:',x,z,'r-',x,y,'bo',x,y,'c+')
www.eeworm.com/read/477921/6726192
m m_exam8.m
% example 8
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y,'g:',x,z,'r-',x,y,'bo',x,z,'r+')
www.eeworm.com/read/476392/6759291
m state.m
function xdot = state(t,x); % returns the state derivatives
A = [0 1 0; 0 0 1; -6 -11 -6];
B=[1; 1; 1];
xdot = A*x'+ B*sin(2*pi*t);
%xdot = A*x';
www.eeworm.com/read/476102/6762962
sql constantdefine.sql
declare
pi constant number(9):=3.1415926;
begin
commit;
end;
www.eeworm.com/read/410504/11283109
m jdg.m
function jdg(xc,yc,a,b,k)
% 画个椭园)
% (xc,yc) is the position of center
% a is long radio
% b is short radio
% k is the position of the angle
% Example:
% jdg(0,0,3,5,pi/6)
t1=0:.02:pi;
t2=pi:.
www.eeworm.com/read/264889/11296633
cpp 6_46.cpp
#include
using namespace std;
int main()
{ int *pi;
//pi=3.5;//语句1:错误,没有内存单元被分配给*pi
int i=3;
pi=&i;//语句2:通过将变量的地址赋给指针变量进行初始化
cout