代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/205502/15314727
m ex5_4.m
x=0:pi/100:2*pi;
y1=0.2*exp(-0.5*x).*cos(4*pi*x);
y2=2*exp(-0.5*x).*cos(pi*x);
plotyy(x,y1,x,y2);
www.eeworm.com/read/205502/15314775
m ex3_21.m
a=0;b=3*pi;
n=1000; h=(b-a)/n;
x=a; s=0;
f0=exp(-0.5*x)*sin(x+pi/6);
for i=1:n
x=x+h;
f1=exp(-0.5*x)*sin(x+pi/6);
s=s+(f0+f1)*h/2;
f0=f1;
end
s
www.eeworm.com/read/171524/5394041
c jpc_t2enc.c
/*
* Copyright (c) 1999-2000 Image Power, Inc. and the University of
* British Columbia.
* Copyright (c) 2001-2003 Michael David Adams.
* All rights reserved.
*/
/* __START_OF_JASPER_LICENSE__
www.eeworm.com/read/170938/5402568
m wt04fig06.m
% CAPTION
fprintf('\n');
disp('Figure 4.6')
disp('Left: graph of the Mexican hat wavelet, equal to minus the second')
disp('derivative of a Gaussian.')
disp('Right: graph of the Fourier transform
www.eeworm.com/read/162614/5522159
c lvalue4.c
// { dg-do run }
int main() {
int i = 2;
int *pi = &(++i);
return i != 3;
}
www.eeworm.com/read/475959/6771631
cpp 6_46.cpp
#include
using namespace std;
int main()
{ int *pi;
//pi=3.5;//语句1:错误,没有内存单元被分配给*pi
int i=3;
pi=&i;//语句2:通过将变量的地址赋给指针变量进行初始化
cout
www.eeworm.com/read/475765/6777732
m ex8_2.m
% EX8_2.M Plot the Fourier series of the function f(t)
% f(t)=0 -pi < t < 0
% f(t)=t 0 < t < pi
%
% Plot f(t) for 5 and 20 terms in the series
clear
t =[-pi:.031:pi]; % Ti
www.eeworm.com/read/475765/6777738
m p8_17.m
% P8_17.M Fourier series of Square wave
%
% Plot the Fourier series of the function f(t)
% f(t)=1 0 < t < pi
% f(t)=-1 -pi < t < 0
%
clear
T=2*pi % Period
w0 = 2*pi/T % Radian fr
www.eeworm.com/read/475765/6777756
m p6_7.m
% P6_7.M Plot the solution to the equation
% y''+y=0 with y(0)=2 and y(pi/2)=1.
%
x=[0:.01:pi/2];
y=2*cos(x) + (1-(pi/2))*sin(x) + x;
clf
plot(x,y)
title('Solution to y''+y=0 with y(0)=2, y(1