代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/356171/10235554
m gk_all.m
function [U, dist] = gk_all(nclass,data,phi,centroid, W)
% allocation of fuzzy k means Gustafson-Kessel algorithm
% [U, dist] = gk_fkm(nclass,data,U,phi,centroid,W)
% input
% nclass = numbe
www.eeworm.com/read/355030/10301288
cpp memcheck.cpp
//: C26:MemCheck.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Memory allocation tester
#
www.eeworm.com/read/271450/10994714
cpp memcheck.cpp
//: C26:MemCheck.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Memory allocation test
www.eeworm.com/read/467355/7010812
c protein.c
# include "pocket.h"
Protein::Protein()
{
num_res=0;
res=new Residue[50];
if(res==NULL) Memory_Allocation_Error();
num_atom=0;
atom=new Patom[10000];
if(atom==NULL) Memory_Alloca
www.eeworm.com/read/467355/7010837
c ga_grow.c
# include "grow.h"
Population::Population()
{
extern Parameter *parm;
num_member=num_parent=num_record=0;
member=new Ligand[parm->max_population];
if(member==NULL) Memory_Allocation_Er
www.eeworm.com/read/463644/7177288
m ldamain.m
function [alpha,beta] = ldamain(train,k,emmax,demmax)
% wrapper of Latent Dirichlet Allocation, standard model.
% [alpha,beta] = ldamain(train,k,[emmax,demmax])
% $Id: ldamain.m,v 1.1 2004/11/08 12:41
www.eeworm.com/read/443686/7628649
cpp memcheck.cpp
//: C10:MemCheck.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Memory allocation tester
#
www.eeworm.com/read/399963/7819290
readme07
Chapter 7 - Data Management.
memory1.c - A simple memory allocation program that uses the function malloc.
memory2.c - A program that allocates 16 Megabytes of memory.
memory3.c - A program t
www.eeworm.com/read/315311/13546175
html xallocnamedcolor.html
Xlib Programming Manual: XAllocNamedColor
XAllocNamedColor
Syntax
www.eeworm.com/read/139903/5796079
cpp memcheck.cpp
//: C10:MemCheck.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Memory allocation tester
#