代码搜索:tiny
找到约 5,807 项符合「tiny」的源代码
代码结果 5,807
www.eeworm.com/read/396828/8088275
m d2crossentropy_snn.m
function d2f_da2 = d2crossentropy_snn(a, t)
%D2CROSSENTROPY_SNN 2nd derivative of cross entropy error.
TINY = 1e-8;
a(find(a>=1.0)) = 1.0 - TINY;
a(find(a
www.eeworm.com/read/140851/13058819
m cross_entropy.m
function kl = cross_entropy(p, q, symmetric)
% CROSS_ENTROPY Compute the Kullback-Leibler divergence between two discrete prob. distributions
% kl = cross_entropy(p, q, symmetric)
%
% If symmetric
www.eeworm.com/read/138927/13201896
h fincsys.h
#ifndef _FinC_SYS_H_
#define _FinC_SYS_H_
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/138798/13211747
m cross_entropy.m
function kl = cross_entropy(p, q, symmetric)
% CROSS_ENTROPY Compute the Kullback-Leibler divergence between two discrete prob. distributions
% kl = cross_entropy(p, q, symmetric)
%
% If symmetric
www.eeworm.com/read/261198/11659737
m cross_entropy.m
function kl = cross_entropy(p, q, symmetric)
% CROSS_ENTROPY Compute the Kullback-Leibler divergence between two discrete prob. distributions
% kl = cross_entropy(p, q, symmetric)
%
% If symmetric = 1
www.eeworm.com/read/152554/12106871
h scanner.h
/****************************************************/
/* 文件 scanner.h */
/* 说明 TINY编译器的词法扫描器界面 */
/* 主题 编译器结构:原理和实例 */
/****************************************************/
www.eeworm.com/read/216898/14986963
am makefile.am
#
# Written by Patrick Guio
#
EXTRA_DIST = stencil4.f profile.cpp tiny2.cpp tiny3.cpp
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
LDADD = -L$(top_builddir)/
www.eeworm.com/read/162614/5526745
c 931004-4.c
#include
struct tiny
{
short c;
};
f (int n, ...)
{
struct tiny x;
int i;
va_list ap;
va_start (ap,n);
for (i = 0; i < n; i++)
{
x = va_arg (ap,struct tiny);
www.eeworm.com/read/162614/5527173
c 931004-8.c
#include
struct tiny
{
char c;
};
f (int n, ...)
{
struct tiny x;
int i;
va_list ap;
va_start (ap,n);
for (i = 0; i < n; i++)
{
x = va_arg (ap,struct tiny);
i
www.eeworm.com/read/162614/5527600
c 931004-2.c
#include
struct tiny
{
int c;
};
f (int n, ...)
{
struct tiny x;
int i;
va_list ap;
va_start (ap,n);
for (i = 0; i < n; i++)
{
x = va_arg (ap,struct tiny);
if