代码搜索:Approximation
找到约 1,542 项符合「Approximation」的源代码
代码结果 1,542
www.eeworm.com/read/139250/13170720
c bezr4.c
/*************************************************************************/
/* */
/* Copyright (c) 1997 - 1999 Accelerat
www.eeworm.com/read/139250/13170759
c bezr1.c
/*************************************************************************/
/* */
/* Copyright (c) 1997 - 1999 Accelerat
www.eeworm.com/read/139250/13170983
c bezr2.c
/*************************************************************************/
/* */
/* Copyright (c) 1997 - 1999 Accelerat
www.eeworm.com/read/139250/13170985
c bezr0.c
/*************************************************************************/
/* */
/* Copyright (c) 1997 - 1999 Accelerat
www.eeworm.com/read/138860/13207239
m nlademo.m
function nlademo( im, option )
% NLADEMO Demo for contourlet nonlinear approximation.
% NLADEMO shows how to use the contourlet toolbox to do nonlinear
% approximation. It provides a sample
www.eeworm.com/read/304826/13786009
txt 06-21.txt
例6-21 使用diff函数求数值微分。
解:在命令窗口中输入如下命令,并按Enter键确认。
>> h = .002;
>> x = 0:h:pi;
>> diff(sin(x.^2))/h; %is an approximation to 2*cos(x.^2).*x
>> diff((1:10).^2)
ans =
3 5 7
www.eeworm.com/read/136812/5858209
c erf.c
#ifndef lint
static char sccsid[] = "@(#)erf.c 1.1 92/07/30 SMI";
#endif
/*
* Copyright (c) 1989 by Sun Microsystems, Inc.
*/
/* double erf,erfc(double x)
* K.C. Ng, March, 1989.
* x
*
www.eeworm.com/read/131315/5931364
s sqrt.s
# Copyright (c) 1985, 1993
# The Regents of the University of California. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted pro
www.eeworm.com/read/122492/6065741
java integrator.java
package numbercruncher.mathutils;
/**
* Interface implemented by integrator classes.
*/
public interface Integrator {
/**
* Integrate the function from a to b,
* and return an appro
www.eeworm.com/read/122492/6065755
java eulersdiffeqsolver.java
package numbercruncher.mathutils;
/**
* Differential equation solver that implements Euler's algorithm.
*/
public class EulersDiffEqSolver
extends DiffEqSolver {
/**
* Constructor.