代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/360190/10107070
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/164050/10133690
m exm0861_1.m
%exm0861_1.m
clear,
t=pi;
cem='[t/2,t*2,sin(t)]';
y=eval(cem)
www.eeworm.com/read/359349/10154134
m jiaoantu3_10.m
w=-3*pi:0.001*pi:3*pi;
P4=4*sin(2*w)./(2*w);
P2=2*sin(w)./(w);
subplot(3,1,1)
plot(w,P4),axis([-10,10,-2,5])
subplot(3,1,2)
plot(w,P2),axis([-10,10,-2,5])
subplot(3,1,3)
plot(w,P4+P2),axis([-1
www.eeworm.com/read/359349/10154196
m example3_4.m
% ======================================================================
% Example3_4
%========================================================================
clear,close all
format long
t1=2;%i
www.eeworm.com/read/359349/10154226
m ctfs_exp.m
%========================================================================
clear,close all
t1=2;%input('Type in the time range:');
p=0.01;
t=-t1:p:t1;
T=1;%input('Type in the period T=:');
Nf=5;%
www.eeworm.com/read/163246/10168758
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/358609/10183941
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/357617/10204736
txt 05-16.txt
>> h_f=@(x)(sin(x)-0.6);
>> [x1,y1]=fzero(h_f,[0,pi/2])
>> [x2,y2]=fzero(h_f,[pi/2,pi])
>> [x3,y3]=fzero(h_f,0)
>> [x4,y4]=fzero(h_f,pi)
www.eeworm.com/read/357617/10204892
txt 02-31.txt
% script m-file example: calculate the volume and surface area of a colume
r=1; % the radius of the colume
h=1; % the hight of the colume
s=2*r*pi*h + 2*pi*r^2;
www.eeworm.com/read/357617/10204985
m ans2_7.m
disp('sin(60)=');
disp(sind(60));
disp('exp(3)=');
disp(exp(3));
disp('cos(3*pi/4)=');
disp(cos(3*pi/4));