代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/227639/14418926
c 矩阵转换.c
void trans(int *p,int n)
{
int i,j,temp;
int *pi,*pj;
for(i=0;i
www.eeworm.com/read/227046/14442973
m chap3_11f.m
function [y]=func(x1,x2,x3)
for l1=1:1:3
gs1=-[(x1+pi/6-(l1-1)*pi/6)/(pi/12)]^2;
u1(l1)=exp(gs1);
end
for l2=1:1:3
gs2=-[(x2+pi/6-(l2-1)*pi/6)/(pi/12)]^2;
u2(l2)=exp(gs2);
end
www.eeworm.com/read/125845/14458685
cpp cpp1.cpp
#include "stdio.h"
#include "math.h"
#define N 100000
#define M 1001
void div(long a[],unsigned int z)
{int i;
unsigned long temp,p=0;
for(i=0;i
www.eeworm.com/read/125845/14458689
cpp cpp2.cpp
#include "stdio.h"
#include "math.h"
#define N 100000 /*数组中每个元素储存一个五位数 */
#define M 201 /*数组含M个元素,共储存5*M位数*/
void fdiv(long a[],unsigned int z) /*超长整型数a[]除以整数z*/
{int i;
unsigned long temp,
www.eeworm.com/read/125845/14458693
txt 圆周率源程序1.txt
#include "stdio.h"
#include "math.h"
#define N 100000
#define M 1001
void div(long a[],unsigned int z)
{int i;
unsigned long temp,p=0;
for(i=0;i
www.eeworm.com/read/125845/14458694
txt 圆周率源程序2.txt
#include "stdio.h"
#include "math.h"
#define N 100000 /*数组中每个元素储存一个五位数 */
#define M 201 /*数组含M个元素,共储存5*M位数*/
void fdiv(long a[],unsigned int z) /*超长整型数a[]除以整数z*/
{int i;
unsigned long temp,
www.eeworm.com/read/226548/14460094
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/125549/14486645
cpp p1-14.cpp
#include
const double PI=3.1416; //声明常量(const变量)PI为3.1416
main()
{
//声明3个变量
double r=3,l,s;
//计算圆的周长
l=2*PI*r;
cout
www.eeworm.com/read/125549/14486731
cpp p1-4.cpp
##include //包含iostream.h头文件
void main()
{
//输出字符常量、变量和字符串
char c1='A';
cout
www.eeworm.com/read/125377/14496061
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