代码搜索:poly
找到约 5,168 项符合「poly」的源代码
代码结果 5,168
www.eeworm.com/read/379932/9172208
cpp poly.cpp
#include
#include
#include
#define OK 1;
#define MYOVERFLOW -2;
#define NULL 0
typedef struct polyterm{
int coef ;
int exp ;
struct polyterm *next;
}poly
www.eeworm.com/read/182900/9186800
c poly.c
/* poly.c -- implements polygons and simplices
see README, poly.h and qhull.h
copyright (c) 1993-1995, The Geometry Center
infrequent code is in poly2.c
(all but top 50 and the
www.eeworm.com/read/182900/9186811
h poly.h
/* poly.h -- header file for poly.c and poly2.c
see README, qhull.h and poly.c
copyright (c) 1993-1995, The Geometry Center
*/
#ifndef qhDEFpoly
#define qhDEFpoly 1
/*----------------------
www.eeworm.com/read/179705/9342329
texi poly.texi
@cindex polynomials, roots of
This chapter describes functions for evaluating and solving polynomials.
There are routines for finding real and complex roots of quadratic and
cubic equations using an
www.eeworm.com/read/179705/9342453
c poly.c
/* interpolation/interp_poly.c
*
* Copyright (C) 2001 DAN, HO-JIN
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License
www.eeworm.com/read/177197/9465711
cpp poly.cpp
//////////////////////////////////////////////////////////////////////
// poly.cpp: implementation of the poly class.
//
// liam rainford-
// UL student id# 0109789
// 17-Dec-2001 to 6-Jan-2002
www.eeworm.com/read/177197/9465712
h poly.h
//////////////////////////////////////////////////////////////////////
//
// poly.h: interface for the poly class.
//
//////////////////////////////////////////////////////////////////////
#if
www.eeworm.com/read/372507/9507302
cpp poly.cpp
// evaluate a polynomial
#include
template
T PolyEval(T coeff[], int n, const T& x)
{// Evaluate the degree n polynomial with
// coefficients coeff[0:n] at the point x.
www.eeworm.com/read/364809/9894205
m poly.m
www.eeworm.com/read/168218/9932193
cpp poly.cpp
// evaluate a polynomial
#include
template
T PolyEval(T coeff[], int n, const T& x)
{// Evaluate the degree n polynomial with
// coefficients coeff[0:n] at the point x.