代码搜索:polynom
找到约 221 项符合「polynom」的源代码
代码结果 221
www.eeworm.com/read/247004/12692922
cpp polynom.cpp
#include "stdafx.h"
#include "stdlib.h"
#include "Polynom.h"
void InitPolynom(Polynom* p, const GF& gf, int d) {
p->D=d;
p->coef=(GFE*)malloc(sizeof(GFE)*(d+1));
p->gf=gf;
}
//加入参数coef的
www.eeworm.com/read/329073/12984177
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/329073/12984992
html polynom.html
polynom
Description of the program: polynom
This programs models the data ma
www.eeworm.com/read/239554/13272452
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/319404/13452644
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/319404/13452646
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/305568/13766261
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/345494/11813225
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/345494/11813229
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/338860/12275796