代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/294870/8196392
m gaussn.m
function g = gaussn(f0,n)
% function gn = gaussn(f0,n) : generates the order n derivative of the
% gaussian window, centered at frequency f0
% The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/193048/8255685
m ex1_16.m
% ex1_16
% 确定表达式值
clear;
a=[0 2;pi 0];
b=[0 0;i 0];
y=a&b+a>b,
x=(a&b)+(a>b)
www.eeworm.com/read/294008/8257910
m example1_9.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);
www.eeworm.com/read/393859/8258157
m teach41.m
x=(0:.1:6)*pi;
y=abs(sin(x))
plot(x,y)
axis([0 20 -1.2 1.2])
www.eeworm.com/read/393857/8258546
m b78.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);
www.eeworm.com/read/192917/8264959
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/393518/8280807
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'}
%
www.eeworm.com/read/393013/8315135
m huitu4.m
t=0:pi/20:2*pi;
y=exp(sin(t));
plotyy(t,y,t,y,'plot','stem')
www.eeworm.com/read/393013/8315241
m huitujb3.m
h=figure;
t=0:pi/20:2*pi;
plot('v6',t,sin(t).*2);
hgsave(h,'myFigFile','-v6')
www.eeworm.com/read/392361/8348288
m exm075_1.m
%exm075_1.m
clear,
t=pi;
eval('theta=t/2,y=sin(theta)');