代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/356183/10235464
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/356085/10237423
m example1_9.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);
www.eeworm.com/read/425160/10376451
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/161256/10432403
m circle.m
clf;r=2;t=0:pi/100:2*pi;x=r*exp(i*t);
plot(x,'r*');axis('square')
www.eeworm.com/read/279421/10439109
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/161171/10440802
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/424453/10447032
m f2.m
function f2=f2(x,y)
f2=x^2+2*y^2-0.3*cos(3*pi*x)-0.4*cos(4*pi*y)+0.7;
www.eeworm.com/read/353194/10464705
c e_rem_pio2.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the
www.eeworm.com/read/278599/10526755
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/160256/10548633
m example1_9.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);