代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/319383/13452830
m kernel.m
function [K] = kernel(ker,x,y)
% Calculate kernel function.
%
% x: 输入样本,d×n1的矩阵,n1为样本个数,d为样本维数
% y: 输入样本,d×n2的矩阵,n2为样本个数,d为样本维数
%
% ker 核参数(结构体变量)
% the following fields:
% type - linear : k(
www.eeworm.com/read/318712/13473720
m kernel.m
function [K] = kernel(x,y)
%----K(x,t)=exp(-||x-t||.^2)----------------
rows = size(x,2);
cols = size(y,2);
tem = zeros(rows,cols);
for i = 1:rows
for j = 1:cols
tem(i,j) = n
www.eeworm.com/read/318604/13475149
c kernel.c
/* kernel.c - the C part of the kernel */
/* Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the
www.eeworm.com/read/318488/13477559
m kernel.m
function krn = kernel (fwhm, style)
% KERNEL Create a 2D kernel with the specified full-width half-maximum
%
% kern = kernel (fwhm [, style])
%
% generates a square matrix containing a 2-D functio
www.eeworm.com/read/317759/13497958
h kernel.h
/************************************************************************/
/* */
/* kernel.h
www.eeworm.com/read/317012/13512279
m kernel.m
function k = kernel(x, y);
% function k = kernel(x, y);
%
% x: (Lx,N) with Lx: number of points; N: dimension
% y: (Ly,N) with Ly: number of points
% k: (Lx,Ly)
%
% KTYPE = 1: linear kernel:
www.eeworm.com/read/316064/13530840
f kernel.f
subroutine kernel(is,mu,rm,xpl,psl,bp)
integer mu
real rm(-mu:mu)
real psl(-1:80,-25:25),xpl(-25:25),bp(0:25,-25:25)
real pha,betal
integer is,ip1,j,i,k,ip,ig,
www.eeworm.com/read/315327/13545862
h kernel.h
#define INT_MAX ((int)(~0U>>1))
#define INT_MIN (-INT_MAX - 1)
#define UINT_MAX (~0U)
#define LONG_MAX ((long)(~0UL>>1))
#define LONG_MIN (-LONG_MAX - 1)
#define ULONG_MAX (~0UL)
www.eeworm.com/read/315327/13545901
h kernel.h
#define INT_MAX ((int)(~0U>>1))
#define INT_MIN (-INT_MAX - 1)
#define UINT_MAX (~0U)
#define LONG_MAX ((long)(~0UL>>1))
#define LONG_MIN (-LONG_MAX - 1)
#define ULONG_MAX (~0UL)
www.eeworm.com/read/315110/13551585
h kernel.h
/* $Id: kernel.h,v 1.7 2003/10/20 15:19:53 hadess Exp $ */
/* Copyright (C) 1998-99 Martin Baulig
This file is part of LibGTop 1.0.
Contributed by Martin Baulig , Apr