代码搜索:Gauss

找到约 2,862 项符合「Gauss」的源代码

代码结果 2,862
www.eeworm.com/read/208947/15230395

gauss

www.eeworm.com/read/257619/11919390

c gauss .c

#include "stdio.h" #include "stdlib.h" #include "math.h" int rgauss(a,b,n,x) int n; double a[],b[],x[]; {int l,k,i,j,p; double d,t; l=1; /*置非奇异标志*/ for(k=0;k
www.eeworm.com/read/191079/8433994

cpp gauss.cpp

// // spectral toolkit // copyright (c) 2005 university corporation for atmospheric research // licensed under the gnu general public license // #include "gauss.h" using namespace spectral; /// Co
www.eeworm.com/read/191079/8433996

h gauss.h

// // spectral toolkit // copyright (c) 2005 university corporation for atmospheric research // licensed under the gnu general public license // #ifndef __gauss__ #define __gauss__ #include "spectr
www.eeworm.com/read/390075/8487167

m gauss.m

function u=gauss(a,n) for k=1:n-1 for i=k+1:n for j=k+1:n+1 if abs(a(k,k))>1e-6 a(i,j)=a(i,j)-a(i,k)/a(k,k)*a(k,j); else msgb
www.eeworm.com/read/290011/8512304

c gauss.c

double uniform(double a,double b,long int *seed) { double t; *seed=2045*(*seed)+1; *seed=*seed-(*seed/1048576)*1048576; t=(*seed)/1048576.0; t=a+(b-a)*t; return(t); } double gauss(dou
www.eeworm.com/read/389019/8554298

h gauss.h

int Gauss(double A[][n]) { int i,j,k; double max; for(k=0;k
www.eeworm.com/read/389019/8554308

cpp gauss.cpp

#include #include #define n 150 #define eps 1.0e-40 #include"down_triangle.h" #include"up_triangle.h" #include"Gauss_C.h" #include"Gauss.h" #include"Cholesky.h" #include"impr
www.eeworm.com/read/188087/8573231

c gauss.c

#include "stdio.h" #include "stdlib.h" #include "mpi.h" #include "math.h" #define a(x,y) a[x*M+y] #define b(x) b[x] #define A(x,y) A[x*M+y] #define B(x) B[x] #define floatsize sizeof(float) #define in
www.eeworm.com/read/431675/8661721

m gauss.m

%GAUSS Generation of multivariate Gaussian dataset. % % A = gauss(n,U,G) % % Generation of n k-dimensional Gaussian distributed vectors with % covariance matrices G (size k*k*c) and with means, la