代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/399778/7837384
as linear.as
package gs.easing {
public class Linear {
public static function easeNone (t:Number, b:Number, c:Number, d:Number):Number {
return c*t/d + b;
}
public static function easeIn (t:Number,
www.eeworm.com/read/267896/4258417
as linear.as
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2003-2005 Macromedia, Inc. All Rights Reserved.
// The following is Sample Code and is subject t
www.eeworm.com/read/391023/8427823
c linear.c
/*
* tslib/plugins/linear.c
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL. Please see the file
* COPYING for more details.
*
* $Id: linear.c,v 1.8 2003/03/05 2
www.eeworm.com/read/289680/8535149
m linear.m
function ker = linear(arg)
% LINEAR
%
% Construct a linear kernel object,
%
% K(x1, x2) = x1.x2';
%
% Examples:
%
% % default constructor
%
% ker1 = linear;
%
% % copy cons
www.eeworm.com/read/389274/8537579
m linear.m
function ker = linear(arg)
if nargin == 0
% this is the default constructor
ker.dummy = [];
ker = class(ker, 'linear');
elseif isa(a, 'linear');
% this is t
www.eeworm.com/read/188280/8552289
m linear.m
function ker = linear(arg)
% LINEAR
%
% Construct a linear kernel object,
%
% K(x1, x2) = x1.x2';
%
% Examples:
%
% % default constructor
%
% ker1 = linear;
%
% % copy cons
www.eeworm.com/read/289178/8570202
h linear.h
#ifndef _LIBLINEAR_H
#define _LIBLINEAR_H
#ifdef __cplusplus
extern "C" {
#endif
struct feature_node
{
int index;
double value;
};
struct problem
{
int l, n;
int *y;
struct feature_node **x;
www.eeworm.com/read/289178/8570209
cpp linear.cpp
#include
#include
#include
#include
#include
#include "linear.h"
#include "tron.h"
typedef signed char schar;
template inline void swap(T&
www.eeworm.com/read/429004/8825006
v linear.v
module linear(c,u,clk);
output[6:0] c;
input[3:0] u;
input clk;
reg[6:0] c;
always @(posedge clk)
begin
c[6] = u[3];
c[5] = u[2];
c[4] = u[1];
c[3] = u[0];
c[2] = u[1] ^ u[2] ^ u[3];
c[1
www.eeworm.com/read/428884/8831726
c linear.c
/*
* tslib/plugins/linear.c
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL. Please see the file
* COPYING for more details.
*
* $Id: linear.c,v 1.10 2005/02/26