代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/221007/7074570
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/274556/7126930
m e0206.m
b=[1+2*i,2+3*i;2-i,3-2*i]
real(b)
imag(b)
abs(b)
angle(b)
angle(b)*180/pi
conj(b)
www.eeworm.com/read/206562/7129759
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/464287/7166578
m b78.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);
www.eeworm.com/read/462042/7211946
txt 代码4-9.txt
X = 0:pi/10:pi;
Y = sin(X);
E = std(Y)*ones(size(X));
errorbar(X,Y,E)
www.eeworm.com/read/462013/7212992
txt fft.txt
Public Sub fft(pr() As Single, pi() As Single, N As Long, k As Long, fr() As Single, fi() As Single, ll As Long, ill As Long)
Dim it As Long, i As Long, j As Long
Dim m As Long, iis As Long, nv As
www.eeworm.com/read/459103/7282703
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/458257/7300330
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/458010/7314172
m rotqr2eu.m
function e=rotqr2eu(m,q)
%ROTQR2EQ converts a real unit quaternion into the corresponding euler angles
% Inputs:
%
% M(1,3) a string of 3 characters from the set {'x','y','z'}
%