代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/320159/13432064
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/320052/13433947
m dft.m
function b = dft(a)
N=length(a);
b=zeros(1,N);
for k=1:N
for n=1:N
b(k)=b(k)+a(n)*exp(-2*pi*j*(k-1)*(n-1)/N);
end
end
www.eeworm.com/read/319871/13440947
m exm0861_1.m
%exm0861_1.m
clear,
t=pi;
cem='[t/2,t*2,sin(t)]';
y=eval(cem)
www.eeworm.com/read/319404/13452718
m ex2105.m
%例21-5:采用梯形法计算定积分 。
X = 0:pi/100:pi;
Y = sin(X);
Z = trapz(X,Y)
www.eeworm.com/read/319335/13453651
m exm06021_1.m
t=(0:pi/50:2*pi)';k=0.4:0.1:1;Y=cos(t)*k;plot(t,Y)
www.eeworm.com/read/319335/13453713
m exm05011_2.m
a1=sym([1/3,0.2+sqrt(2),pi]) %产生 符号数组
a2=sym('[1/3,0.2+sqrt(2),pi]') %产生 符号数组
a3=sym('[1/3 0.2+sqrt(2) pi]') %产生 符号数组
a1_a2=a1-a2 %为比较a1,a2
www.eeworm.com/read/319335/13453956
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/317326/13505909
m sa_ex7_12.m
% MUSIC AOA estimation for a M = 6 element array with noise variance = .1
% use time averages instead of expected values by assuming ergodicity of the mean and
% ergodicity of the correlation.
www.eeworm.com/read/317326/13505925
m sa_ex7_14.m
% root-Min-Norm AOA estimation for a M = 4 element array with noise variance = .1
% use time averages instead of expected values by assuming ergodicity of the mean and
% ergodicity of the correlati