代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/232055/14209654
m examp8_19.m
maple('with(numtheory):'); f=maple(['cfe:=cfrac(pi,20)'])
n=maple('nthnumer','cfe',4); d=maple('nthdenom','cfe',4); [vpa(n),vpa(d)]
www.eeworm.com/read/232055/14209808
m examp3_33.m
f=inline('cos(15*x)','x');
tic, S=quadl(f,0,3*pi/2,1e-15), toc
S1=quad(f,0,3*pi/2) % 采用默认精度
S1=quad(f,0,3*pi/2,1e-15)
www.eeworm.com/read/232055/14209953
m examp5_13.m
syms t k; syms a positive
f1=t; f2=a-t;
Fs=int(f1*sin(k*pi*t/a),t,0,a/2)+int(f2*sin(k*pi*t/a),t,a/2,a);
simple(Fs)
www.eeworm.com/read/232055/14209987
m examp10_19.m
syms t; f=(1-t^2)*exp(-t^2/2)/sqrt(2*pi);
ezplot(f,-4,4), hold on; % 绘制基小波,并保护坐标系不被刷新
ezplot(subs(f,t,t-1),-4,4); ezplot(subs(f,t,t+1),-4,4) % 小波平移
figure; ezplot(f,-4,4), hold on;
ezplot(subs(f
www.eeworm.com/read/129726/14231246
c realloc.c
#include
#include
#include
#include
void main()
{
int *pi;
int i;
clrscr();
pi=(int *)malloc(10*sizeof(int)); /* memory 且寸 */
if (pi==NULL) exit
www.eeworm.com/read/231449/14233609
m program_04_1.m
% Program 4_1
% Generate the filter coefficients
colordef black
h1 = ones(1,5)/5; h2 = ones(1,14)/14;h3 = ones(1,200)/200;
w = 0:pi/255:pi;
% Compute the frequency responses
H1 = freqz(h1, 1, w
www.eeworm.com/read/129636/14234872
m exm07062_1.m
%exm07062_1.m
clc
x=pi/4;Ve=eval('1+sin(x)')
Vf=feval('1+sin(x)',x)
www.eeworm.com/read/129636/14234916
m exm060251_1.m
t=2*pi*(0:20)/20;y=cos(t).*exp(-0.4*t);
stem(t,y,'g');hold on;stairs(t,y,'r');hold off
www.eeworm.com/read/231340/14238452
m testana1.m
%
% simply supported Euler beam
L=1; E=2.15e11; rho=7800; d=50e-3; nu=0.3;
r=d/2;
ind=1:4;
I=pi*d^4/64; EI=E*I;
A=pi*(r^2);
lam=(ind*pi).^2/L^2*sqrt(EI/rho/A)/2/pi;
fprintf(
www.eeworm.com/read/231340/14238471
m testanax.m
%
% simply supported Euler beam
global L A Gs E Iy rho nn
% use Genta page 87 eq. 2-40 to compute simply supported Timoshenko beam
% eigen frequencies
dw=[];
%
L=1; E=2.15e11; rho=7800; d=50e-3