代码搜索:Raspberry Pi

找到约 10,000 项符合「Raspberry Pi」的源代码

代码结果 10,000
www.eeworm.com/read/198282/7942815

m examp5_1.m

syms t; f=t^2*exp(-2*t)*sin(t+pi); laplace(f) pretty(ans) latex(ans)
www.eeworm.com/read/298099/7974434

m ex0202.m

%用linspace和logspace函数生成行向量 x1=linspace(0,2*pi,5) %从0到2π等分成5个点 x2=logspace(0,2,3) %从1到100对数等分成3个点
www.eeworm.com/read/297707/8002302

c lind4-8.c

#include #define PI 3.1416 main() /*shang mian shi ge hong*/ { float r=0,h=0,ol,os,qv,zv,qs; /*bao liu liang wei xiao shu*/ printf("Please input r&h.\n"); scanf("%f%f",&r
www.eeworm.com/read/398034/8009015

m sa_ex7_10.m

% Min-Norm AOA estimation for a M = 6 element array with noise variance = .1 tic M=6; D = 2; % number of signals sig2=.1; th1=-5*pi/180; th2=5*pi/180; a1=[1]; a2=[1]; a=[1]; F=[1;1]; tem
www.eeworm.com/read/398034/8009016

m sa_fig7_10.m

% Min-Norm AOA estimation for a M = 6 element array with noise variance = .1 figure; M=6; D = 2; % number of signals sig2=.1; th1=-5*pi/180; th2=5*pi/180; a1=[1]; a2=[1]; temp=eye(M); u
www.eeworm.com/read/398034/8009022

m sa_ex7_11.m

% MUSIC AOA estimation for a M = 6 element array with noise variance = .1 tic M=6; D = 2; % number of signals sig2=.1; th1=-5*pi/180; th2=5*pi/180; a1=[1]; a2=[1]; for i=2:M a1=[a1
www.eeworm.com/read/296389/8107702

m forward.m

function [aim]=forward(x,y) pi=3.1415; aim=1-(exp((-(x-3)^2-y*y)/2)+0.6*exp((-(x+3)^2-y*y)/2))/sqrt(2*pi);
www.eeworm.com/read/145872/12698469

java app7_8.java

// app7_8, 圆形类CCircle class CCircle // 定义类CCircle { double pi; // 将数据成员赋值初值
www.eeworm.com/read/145872/12698481

java app7_9.java

// app7_9, 圆形类CCircle class CCircle // 定义类CCircle { double pi; // 将数据成员赋值初值
www.eeworm.com/read/145385/12729032

m ex1_1.m

x=[0:0.5:360]*pi/180; plot(x,sin(x),x,cos(x));