代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/178108/9418026

cpp 分析解.cpp

#include #include #include #define NM 50 //未知数个数 void main() { int n,i,j,N; //N为x方向结点个数 double x,y,t[NM][NM],pi;//t[NM][NM]存放温度 float dx
www.eeworm.com/read/177693/9440022

m gao.m

function G = Gao(X,U,xie,m,n,k) for i = 1:n for j=1:k G(i,j) = exp((-1/2).*(X(i,:)- U(j,:))*pinv(xie(:,:,j))*(X(i,:)-U(j,:)).')*1/((2*pi).^(m/2)*sqrt(det(xie(:,:,j)))); end end
www.eeworm.com/read/177691/9440218

m exp2_4_.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; hold on %允许在同一坐标系下绘制不同的图形 plot(t,sin(t),'r:*') plot(t,cos(t)) plot(t,-cos(t),'k') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 hold off %覆盖旧图
www.eeworm.com/read/177691/9440231

m exp2_4.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; figure(1) %选择图像 plot(t,sin(t),'r:*') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 grid off %删除栅格 figure(2) plot(t,cos(t)) grid on grid off
www.eeworm.com/read/373718/9441813

cpp hmmutils.cpp

//hmmutils.cpp //date:2001.10.11 // Purpose: utilities for reading, writing HMM stuff. #include #include #include #include "nrutils.h" #include "hmm.h" st
www.eeworm.com/read/373714/9441957

m acpmethod.m

%ACP method clc;clear all;close all; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% N= 8; % number of sensors M= 8; % number of pulse
www.eeworm.com/read/373627/9446080

r ch02.r

#-*- R -*- ## Script from Fourth Edition of `Modern Applied Statistics with S' # Chapter 2 Data Manipulation library(MASS) options(echo = T, width=65, digits=5, height=9999) -2:2 powers.of.pi
www.eeworm.com/read/373627/9446081

r ch03.r

#-*- R -*- ## Script from Fourth Edition of `Modern Applied Statistics with S' # Chapter 3 S Language library(MASS) options(echo = T, width=65, digits=5, height=9999) # from Chapter 2 powers.of
www.eeworm.com/read/176315/9504670

cpp hmmutils.cpp

//hmmutils.cpp //date:2001.10.11 // Purpose: utilities for reading, writing HMM stuff. #include #include #include #include "nrutils.h" #include "hmm.h" st
www.eeworm.com/read/372509/9506165

txt 3_1.txt

(1) sqrt(pow(sin(x),2.5)) (2) (a*x+(a+x)/(4*a))/2 (3) pow(c,x*x)/sqrt(2*M_PI) //M_PI为BC中math.h中的圆周率常数