代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/390099/8486229
m sinc.m
function y=sinc(x)
y=ones(size(x));
i=find(x);
y(i)=sin(pi*x(i))./(pi*x(i));
www.eeworm.com/read/432821/8569846
m fun_12_10.m
function ydot=fun_12_10(t,x)
u=1-(t.^2)/(pi^2);
ydot=[0 1;-1,0]*x+[0 1]'*u;
www.eeworm.com/read/388784/8576371
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/388421/8611166
m koch.m
clear
p=[0 0;10 0];n=1;
A=[cos(pi/3) -sin(pi/3);sin(pi/3) cos(pi/3)];
for k=1:5
j=0;
for i=1:n
q1=p(i,:);
q2=p(i+1,:);
d=(q2-q1)/3;
j=j+1;r(j,:
www.eeworm.com/read/187659/8612266
m untitled2.m
x = -pi:.1:pi;
y = sin(x);
plot(x,y)
set(gca,'XTick',-pi:pi/2:pi)
set(gca,'XTickLabel',{'-pi','-pi/2','0','pi/2','pi'})
www.eeworm.com/read/288303/8643945
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/287917/8661224
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/386625/8734460
asv src.asv
%======design right function of FEM =================================
%
function z=SRC(x,y)
%z= 2*((1-6*x.*x).*y.*y.*(1-y.*y)+(1-6*y.*y).*x.*x.*(1-x.*x));
z= (2*pi*pi+1)*cos(pi*x).*cos(pi*y);
www.eeworm.com/read/429877/8784685
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/429840/8786170
m examp3_43.m
syms u v; syms a b c positive;
x=a*sin(u)*cos(v); y=b*sin(u)*sin(v); z=c*cos(u);
A=diff(y,u)*diff(z,v)-diff(z,u)*diff(y,v);
I=int(int(x^3*A,u,0,pi/2),v,0,2*pi)