代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/342008/12047453
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/342008/12047608
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/153204/12052095
makefile
CC = g++
CCFLAG = -c
OBJECTS = main.o Apriori.o AssociationRule.o HashTree.o List.o itemSet.o tzObject.o
apriori : $(OBJECTS)
$(CC) $(LIB) -o $@ $(OBJECTS)
main.o : main.cpp Apriori.h Association
www.eeworm.com/read/255755/12057366
m remclass.m
%REMCLASS Remove small classes
%
% B = REMCLASS(A,N)
%
% INPUT
% A Dataset
% N Integer, maximum class size to be removed (optional; default 0)
%
% OUTPUT
% B Dataset
%
% DESCR
www.eeworm.com/read/153044/12064185
m help_zooming.m
function help_zooming(self)
% The SeaGrid window uses "zoomsafe" for zooming and
% panning. Click in white-space or on inactive objects
% to zoom. To invoke a rubber-rectangle, drag while the
%
www.eeworm.com/read/153044/12064239
m subsindex.m
function theResult = subsindex(self)
% ps/subsindex -- Value of a "ps" as an index.
% subsindex(self) posts an error, since "ps"
% objects may not be used as indices.
% Copyright (C) 1999 Dr. Ch
www.eeworm.com/read/255568/12073424
makefile
#Makefile for GCC by Tom St Denis
CFLAGS += -I. -Os -Wall -W
VERSION=0.04
#default files to install
LIBNAME=libtompoly.a
HEADERS=tompoly.h
#LIBPATH-The directory for libtomcrypt to be ins
www.eeworm.com/read/341568/12077148
makefile
# Makefile for CCITT subroutines and sample programs
#
# Modify the CC definition to invoke your ANSI-C compiler
#
CC = acc
# Rules to build sample programs do not depend on a UNIX library program
www.eeworm.com/read/152646/12095239
makefile
# MAKE FILE for GSNAKE API
# Change the following line to reflect where your X11-include directory
X11Include = /usr/openwin/include
CC = g++ -I$(X11Include)
LIBSOURCE = ../lib
SOURCE
www.eeworm.com/read/255161/12097280
makefile
objects = data.o fpgrowth.o fptree.o item.o testfpgrowth.o
CC = g++
flags = -O6 -Wall
fpgrowth: $(objects)
$(CC) $(flags) $(objects) -o fpgrowth
data.o: data.cpp data.h
$(CC) $(flags) -c data.cpp