代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/319870/13441307
cpp hermite插值.cpp
#include
#define F(x) (1/(1+25*(x)*(x)))
#define F1(x) -50*x/((1+25*x*x)*(1+25*x*x))
#define L(y,x0,x1,x2) ((y)-x1)*((y)-x2)/((x0-x1)*(x0-x2))
#define FA(y,x0,x1,x2) (1-2*(y-x0)*(1/(x0
www.eeworm.com/read/319829/13441503
txt 牛顿插值.txt
import java.util.*;
import java.awt.*;
import javax.swing.*;
public class chazhi
{
public static void main(String args[])
{
new CH().init();
}
}
class CH extends JFrame
{
public voi
www.eeworm.com/read/315837/13535483
doc matlab插值.doc
www.eeworm.com/read/315422/13543609
gif 和值表.gif
www.eeworm.com/read/315422/13544295
dbf 逻辑值.dbf
www.eeworm.com/read/328305/6335215
doc 插值算法.doc
www.eeworm.com/read/494610/6378357
txt f分布值.txt
0 1 2 3 4 5 6 7 8 9 10 12 15 20 60 1000
1 161.4 199.5 215.7 224.6 230.2 234 236.8 238.9 240.5 241.9 243.9 245.9 248 252.2 254.3
2 18.51 19 19.16 19.25 19.3 19.33 19.35 19.37 19.39 19.4 19.41 19.43 1
www.eeworm.com/read/491327/6438558
cpp 绝对值.cpp
#include
using namespace std;
#include
#include
#define PI 3.1415927
int main()
{
double r;
while(cin>>r)
{
printf("%.2f\n",abs(r));
}
return 0;
www.eeworm.com/read/489307/6478401
cpp 最大值.cpp
#include//头文件,用来打开库函数
void main()//主函数
{
//比较输出两个数的最大值
int a,b;//声明变量
printf("请输入一个数:");//输入提示
scanf("%d",&a);//以给定格式,接收键盘的输入内容
printf("请输入另外一个数:");
scanf("%d",&b);
if(a>b)
www.eeworm.com/read/482381/6623699
txt hermite 插值.txt
int i,j,e,n;
float x,y,p_x,p_y,temp,xx[11],yy[11],mm[11],h0,h1,H0,H1,tt[11],sum,p_sum;
Form1->Canvas->Pen->Color=clBlack;//轴色
Form1->Canvas->MoveTo(100,300);Form1->Canvas->LineTo(450,300);