代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/418695/10935175
m modeseek.m
%MODESEEK Clustering by modeseeking
%
% [labels,J] = modeseek(D,k)
%
% If D is a n*n distance matrix between object then a k-nn
% modeseeking method is used to assign each object to its nearest
%
www.eeworm.com/read/418695/10935470
m distm.m
%DISTM Distance matrix between two datasets.
%
% D = distm(A,B)
%
% Computation of the distance matrix D between two datasets A and B.
% Distances are computed as squared Euclidean. If A has m obj
www.eeworm.com/read/418695/10935499
m classs.m
%CLASSS Linear mapping by classical scaling
%
% W = classs(D,k)
%
% Calculates a linear mapping W of a distance matrix D to k dimensions.
% D should be square, size m x m. New objects may be mapped
www.eeworm.com/read/418695/10935589
m prex1.m
%PREX1 PRTOOLS example of classifiers and scatter plot
help prex1
pause(1)
echo on
A = gendath(100,100); % Generate Highleyman's classes
% Training set c (20 objects / class)
% Test set d
www.eeworm.com/read/418695/10935684
m dataimheight.m
%DATAIMHEIGHT Compute vertical image size for images stored as objects
function imheight = dataimheight(a);
if isa(a,'dataset') & isobjim(a)
imheight = dataimsize(a,1);
else
imheight = 0;
end
www.eeworm.com/read/272848/10940910
cpp firstfit.cpp
// first fit bin packing
#include
#include "completeWinnerTree.h"
#include "binType.h"
using namespace std;
void firstFitPack(int *objectSize, int numberOfObjects,
www.eeworm.com/read/271947/10975502
configure
#!/bin/sh
SOURCE="graph.c
prdatabase.c"
if [ ! -d obj ]; then
mkdir obj
fi
if [ ! -d graph_database ]; then
mkdir graph_database
fi
../../datadraw -I ../../util Graph.dd
CFLAGS="-g -Wall
www.eeworm.com/read/271528/10990136
makefile
#/****************************************************************************
#
# MAKEFILE
#
#
# History
# 10/9/96 lvn Initial writeup
# 2/14/97 sgj Modified for RTC Dri
www.eeworm.com/read/271086/11008423
pas viewonlinehuman.pas
unit ViewOnlineHuman;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, ExtCtrls, StdCtrls;
type
TfrmViewOnlineHuman = class(T