代码搜索:插值优化
找到约 10,000 项符合「插值优化」的源代码
代码结果 10,000
www.eeworm.com/read/140909/13053076
frm 曲线_插值f2.frm
VERSION 5.00
Begin VB.Form frmCalculate
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "曲线_插值"
ClientHeight = 2175
ClientLeft = 165
www.eeworm.com/read/324844/13240422
doc 实验七 插值与拟合.doc
www.eeworm.com/read/322740/13368474
doc 拉格朗日插值.doc
www.eeworm.com/read/319828/13441504
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/313329/13590234
txt 拉格郎日插值.txt
#include
#include
#include
#include
//重新排列
void cxpl(int n,int m,float t,float *x,float *y )
{int i,j;
float a;
for(i=0;i
www.eeworm.com/read/483116/6609824
cpp 拉格朗日插值.cpp
/*拉格朗日插值*/
#include
#include
using namespace std;
int main()
{
int i, j, k, n;
char c;
coutc;
cout
www.eeworm.com/read/482381/6623701
txt 分段线性插值函数.txt
int i,j,e;
float x,y,p_x,p_y,temp,xx[11],yy[11],mm[11],sum,p_sum;
Form1->Canvas->Pen->Color=clBlack;//轴色
Form1->Canvas->MoveTo(100,300);Form1->Canvas->LineTo(450,300);//横轴
Form1->Canva
www.eeworm.com/read/401571/11555990
cpp 三次样条插值.cpp
#include
#include
void main()
{
double XX;
int n;
cout
www.eeworm.com/read/260309/11733842
txt 三次样条插值.txt
// 三次自然样条插值编程.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include "stdio.h"
void GetValueSpline(int n,double x[],double y[],double dy[],double ddy[],int m
www.eeworm.com/read/343760/11928789