代码搜索:polynom
找到约 221 项符合「polynom」的源代码
代码结果 221
www.eeworm.com/read/291752/8398761
h polynom.h
//
// File = Polynom.h
//
#ifndef _POLYNOM_H_
#define _POLYNOM_H_
#include "galfield.h"
class PolyOverGF
{
public:
PolyOverGF( GaloisField *gf );
private:
GaloisField* pGalFl
www.eeworm.com/read/291752/8399498
cpp polynom.cpp
// polynom.cpp
//
//#include "stdafx.h"
#include "iostream.h"
#include "galfield.h"
#include "gfelem.h"
#include "polynom.h"
PolyOverGF::PolyOverGF(GaloisField* gf)
{
pGalFld = gf;
Ga
www.eeworm.com/read/426535/9015482
asv polynom.asv
function p = polynom(a)
%POLYNOM多项式类构造函数
% p = POLYNOM(v) 创建creates a polynomial object from the vector v,
% containing the coefficients of descending powers of x.
if nargin == 0
p.c = [];
www.eeworm.com/read/426535/9015487
m polynom.m
function p = polynom(a)
%POLYNOM多项式类构造函数
% p = POLYNOM(v) 从向量v创建一个多项式对象,包含按x降幂排列的系数。
if nargin == 0
p.c = [];
p = class(p,'polynom');
elseif isa(a,'polynom')
p = a;
else
p.c = a
www.eeworm.com/read/176032/9521481
m polynom.m
function p = polynom(a)
%POLYNOM 为多项式类 polynom 的引导函数,它可以将其它形式
%给出的多项式变换成多项式类的形式。
%Designed by Prof D Xue (c) 2000
if nargin == 0
p.c = [];
p = class(p,'polynom');
elseif isa(a,'polynom'
www.eeworm.com/read/360770/10079236
m polynom.m
function y = polynom (a,x)
%----------------------------------------------------------------
% Usage: y = polynom (a,x)
%
% Description: Evaluate a polynomial using Horner's rule.
%
% Inpu
www.eeworm.com/read/423311/10570993
m polynom.m
function p = polynom(a)
%POLYNOM 为多项式类 polynom 的引导函数,它可以将其它形式
%给出的多项式变换成多项式类的形式。
%Designed by Prof D Xue (c) 2000
if nargin == 0
p.c = [];
p = class(p,'polynom');
elseif isa(a,'polynom'
www.eeworm.com/read/440070/7694178
c polynom.c
/*Author: Rainer Hegger, last modified Sep 4, 1999 */
#include
#include
#include
#include
#include
#include "routines/tsa.h"
#define WID_STR "Fits
www.eeworm.com/read/440070/7694860
html polynom.html
polynom
Description of the program: polynom
This programs models the data making a poly
www.eeworm.com/read/247004/12692915
h polynom.h
#ifndef _POLYNOMIAL
#define _POLYNOMIAL
#include "stdlib.h"
#include "GF.h"
struct Polynom {
int D;
GFE* coef;
GF gf;
};
extern void InitPolynom(Polynom* p, const GF& gf, int d);
ex