代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/219349/14886983
m examp2_4.m
v1=0: 0.2: pi % 注意,最终取值为 3 而不是 pi
v2=0: -0.1: pi % 步距为负,显然不能生成向量,故得出空矩阵
v3=0:pi % 取默认步距1
v4=pi:-1:0 % 逆序排列构成新向量
www.eeworm.com/read/219349/14887023
m examp2_24.m
theta=0:0.01:6*pi; rho=5*sin(4*theta/3); polar(theta,rho)
rho=5*sin(theta/3); polar(theta,rho)
www.eeworm.com/read/219349/14887035
m examp5_2.m
syms x w; f=x^2*exp(-2*x)*sin(x+pi);
F=laplace(f,x,w)
ilaplace(F)
www.eeworm.com/read/115859/14999340
hmm l1.hmm
M= 2
N= 3
A:
0.333 0.333 0.333
0.333 0.333 0.333
0.333 0.333 0.333
B:
0.5 0.5
0.75 0.25
0.25 0.75
pi:
0.333 0.333 0.333
www.eeworm.com/read/216045/15028646
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));