代码搜索:Approximation
找到约 1,542 项符合「Approximation」的源代码
代码结果 1,542
www.eeworm.com/read/449679/7498171
ini xdefc.ini
#R G B (default 4nec2 color approximation to use in gnuplot)
0 0 1
0 .75 1
0 1 1
0.4 1 0
1 1 0
1 .8 0
1 .2 0
1 0 .4
1 0 1
www.eeworm.com/read/449127/7517998
m trapcomp.m
function [int, T, nfeval] = trapcomp(fun, a, b, tol)
%
% function [int, nfeval] = trapcomp(f, a, b, tol)
%
% Compute an approximation of the integral of f over
% [a,b] using composite Trazepzod
www.eeworm.com/read/448535/7531456
m plotbernapprox.m
% plot the Benstein polynomial approximation to $f(t) = e^t$
% Copyright 1999 by Todd K. Moon
t = 0:0.01:1;
n=3;
b0 = bernpoly(n,0,t);
b1 = bernpoly(n,1,t);
b2 = bernpoly(n,2,t);
b3 = bernpol
www.eeworm.com/read/448535/7531480
m miniapprox1.m
% minimax approximation example
% Copyright 1999 by Todd K. Moon
t = 0:.05:1
subplot(2,2,1);
b = 1.2;
b1 = .1;
m = (b1-b)
%m = -.73
hold on;
plot(t,cos(pi*t/2),t,m*t + b);
subplot(2,2,2)
www.eeworm.com/read/198970/7900304
m kld.m
function KLD = kld(p1,p2,type,varargin)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% kld An estimate of the KL-Divergence between two density estimates
%
%
www.eeworm.com/read/197100/8029515
h polyaprx.h
/**********************************************************************
* File: polyaprx.h (Formerly polygon.h)
* Description: Code for polygonal approximation from old edgeprog.
* Author:
www.eeworm.com/read/326313/13148550
m example_mw.m
% Example calls to subroutines in mw
% Copyright (c) 2004 by Fritz Keinert (keinert@iastate.edu),
% Dept. of Mathematics, Iowa State University, Ames, IA 50011.
% This software may be freely used
www.eeworm.com/read/137365/13326406
lnt co-iar.lnt
// co-iar.lnt
// Compiler Options for IAR C
// This file contains options to allow PC-lint to process source
// files for your compiler. It is used as follows:
//
// lint co-ia
www.eeworm.com/read/303772/13809594
m insttf_phase.m
function [itime,ifreq]=insttf_phase(cphase,a)
%INSTFREQ_PHASE Instantaneous frequency computed from phase
% [itime, ifreq] = instfreq(cphase,a);
%
% [itime,ifreq]=INSTTF_PHASE(cphase,a) c
www.eeworm.com/read/147331/5733047
c s_erf.c
/* @(#)s_erf.c 5.1 93/09/24 */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsy