代码搜索:SIMP
找到约 1,031 项符合「SIMP」的源代码
代码结果 1,031
www.eeworm.com/read/167547/9963853
chm hibernategossip_simp.chm
www.eeworm.com/read/362396/10000665
c simp_test.c
/*test.c*/
#include
#include
#include"simp.h"
double fun4(double x)
{
double y;
y=log(1.0+x)/(1.0+x*x);
return(y);
}
double fun3(double x)
{
double y;
y=exp(x)/(4.
www.eeworm.com/read/166450/10020140
c simp0.c
#include "stdio.h"
#include "math.h"
main()
{ int n;
double a,b, s,simp(),simpf();
n=4; a=0.0; b=1.0;
s=simp(a,b, simpf,n);
printf("\n");
printf("s=%e\n",s);
www.eeworm.com/read/361569/10045218
c 9simp.c
#include "math.h"
double simp(a,b,eps,f)
double a,b,eps,(*f)();
{ int n,k;
double h,t1,t2,s1,s2,ep,p,x;
n=1; h=b-a;
t1=h*((*f)(a)+(*f)(b))/2.0;
s1=t1;
ep=eps+1.0;
www.eeworm.com/read/164288/10119897
h simp_hc.h
/* *************************************************************
*
* common defines and structures for CC
*
* *************************************************************/
#include "hc.h"
#defin
www.eeworm.com/read/358056/10196909
c 9simp.c
#include "math.h"
double simp(a,b,eps,f)
double a,b,eps,(*f)();
{ int n,k;
double h,t1,t2,s1,s2,ep,p,x;
n=1; h=b-a;
t1=h*((*f)(a)+(*f)(b))/2.0;
s1=t1;
ep=eps+1.0;
www.eeworm.com/read/357618/10204685
m difstack_simp.m
% DIFSTACK_SIMP: create a diffraction stack from vrms(x,t) and a ZOS image
%
% Simplified version of a diffraction stack algorithms without parameter
% choices. The full version is available as
www.eeworm.com/read/280878/10283427
c 9simp.c
#include "math.h"
double simp(a,b,eps,f)
double a,b,eps,(*f)();
{ int n,k;
double h,t1,t2,s1,s2,ep,p,x;
n=1; h=b-a;
t1=h*((*f)(a)+(*f)(b))/2.0;
s1=t1;
ep=eps+1.0;
www.eeworm.com/read/162078/10337123
cpp simp_ini.cpp
#include
class sample
{
int value;
public:
void set_value(int j) {value = j;}
int get_value() {return value;}
};
void main(void)
{
sample obj[3];
int loo
www.eeworm.com/read/353695/10431226