代码搜索:Fitting
找到约 695 项符合「Fitting」的源代码
代码结果 695
www.eeworm.com/read/179705/9342161
c fitting.c
#include
#include
int
main (void)
{
int i, n = 4;
double x[4] = { 1970, 1980, 1990, 2000 };
double y[4] = { 12, 11, 14, 13 };
double w[4] = { 0.1, 0.2, 0.
www.eeworm.com/read/179705/9342391
texi fitting.texi
@cindex fitting
@cindex least squares fit
@cindex regression, least squares
@cindex weighted linear fits
@cindex unweighted linear fits
This chapter describes routines for performing least squares fit
www.eeworm.com/read/424281/10468205
c fitting.c
#include
#include
int
main (void)
{
int i, n = 4;
double x[4] = { 1970, 1980, 1990, 2000 };
double y[4] = { 12, 11, 14, 13 };
double w[4] = { 0.1, 0.2, 0.
www.eeworm.com/read/424281/10468835
texi fitting.texi
@cindex fitting
@cindex least squares fit
@cindex regression, least squares
@cindex weighted linear fits
@cindex unweighted linear fits
This chapter describes routines for performing least squares fit
www.eeworm.com/read/464675/7067484
m fitting.m
function [Fy a]=Fitting(x,y,n)
%curve fitting, y=f(x)
%Fy is the estimation of y at x
%a is the coefficients of poly
%n is the order
%Weight w==1;
n1=n+1;
Fy=zeros(n1,1);
Lox=length(x);
%Aa=
www.eeworm.com/read/121297/6068931
c fitting.c
#include
#include
int
main (void)
{
int i, n = 4;
double x[4] = { 1970, 1980, 1990, 2000 };
double y[4] = { 12, 11, 14, 13 };
double w[4] = { 0.1, 0.2, 0.
www.eeworm.com/read/397358/6681067
dsw fitting.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/397358/6681068
opt fitting.opt
www.eeworm.com/read/397358/6681069
dsp fitting.dsp
# Microsoft Developer Studio Project File - Name="fitting" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) C
www.eeworm.com/read/397358/6681070
cpp fitting.cpp
#include
#include
using namespace std;
void matric_multiple(double A[],double B[],int A1,int A2,int B1,int B2,double C[]);
void matric_transpose(double A[],int A1,int A2,doubl