代码搜索:polynomial
找到约 5,111 项符合「polynomial」的源代码
代码结果 5,111
www.eeworm.com/read/383713/8924979
s polynomial.s
/*---------------------------------------------------------------------------+
| polynomial.S |
|
www.eeworm.com/read/185421/9038717
java polynomial.java
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Iterator;
import java.util.Map;
/**
* 多项式操作的类
*/
public class Polynomial {
Item items = new Item();
publi
www.eeworm.com/read/380425/9150061
cpp polynomial.cpp
//
// 多项式的定义。
//
#include "stdlib.h"
#include "stdio.h"
/*
* 多项式的定义,采用单链表作为存储结构
* Polynode表示结点,用Polynomial定义链表的头指针
*/
typedef struct node{
double coef; //系数
int exp;
www.eeworm.com/read/183443/9158958
m polynomial.m
function ker = polynomial(arg)
% POLYNOMIAL
%
% Construct a polynomial kernel object,
%
% K(x1, x2) = (x1*x2' + 1).^d;
%
% Examples:
%
% % default constructor (quadratic kernel, d = 2
www.eeworm.com/read/379711/9181728
s polynomial.s
/*---------------------------------------------------------------------------+
| polynomial.S |
|
www.eeworm.com/read/379169/9205429
cpp polynomial.cpp
#include "Polynomial.h"
#include
using namespace std;
Node * CircList::av = 0;
CircList::CircList()
{
Node *head = new Node();
first = last = head;
last->link = first;
}
www.eeworm.com/read/379169/9205437
h polynomial.h
#ifndef POLYNOMIAL_H
#define POLYNOMIAL_H
#include
using namespace std;
class Node{
friend class CircList;
friend class Polynomial;//是friend Polynomial 还是friend class Polynomial
www.eeworm.com/read/181389/9256548
m polynomial.m
function ker = polynomial(arg)
% POLYNOMIAL
%
% Construct a polynomial kernel object,
%
% K(x1, x2) = (x1*x2' + 1).^d;
%
% Examples:
%
% % default constructor (quadratic kernel, d = 2
www.eeworm.com/read/181388/9256696
m polynomial.m
function ker = polynomial(arg)
% POLYNOMIAL
%
% Construct a polynomial kernel object,
%
% K(x1, x2) = (x1*x2' + 1).^d;
%
% Examples:
%
% % default constructor (quadratic kernel, d = 2
www.eeworm.com/read/167649/9957189
h polynomial.h
#include "linkQueue.h"
struct Term
{
int degree; // exponent
float coefficient;
Term *next;
Term(int d=0,float c=0.0) // constructors
{ degr