代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/473584/6846732
makefile
all: clustalx.exe
OBJECTS = interface.obj sequence.obj showpair.obj malign.obj \
util.obj trees.obj gcgcheck.obj prfalign.obj pairalign.obj \
calcgapcoeff.obj calcprf1.obj calcprf2.obj calc
www.eeworm.com/read/473219/6848806
m plus.m
function X = plus(X,Y)
%PLUS Merges two LMI objects to one LMI
% Author Johan L鰂berg
% $Id: plus.m,v 1.8 2005/02/10 16:43:32 johanl Exp $
if ~((isa(X,'lmi')) & (isa(Y,'lmi')))
error('Both
www.eeworm.com/read/473219/6848813
m mergelmi.m
function sys = mergelmi(varargin)
% MERGELMI Merges a set of LMI objects
%
% MERGELMI is obsolete and should not be used. Use + instead
%
% See also LMI, UPDATELMI, DELLMI
% Au
www.eeworm.com/read/473219/6848846
m see.m
function see(F)
%see Displays internal structure of matrix variable in a constraint
% Author Johan L鰂berg
% $Id: see.m,v 1.3 2005/02/08 16:11:17 johanl Exp $
if length(F.clauses)
www.eeworm.com/read/473219/6848892
m logdet.m
function sys = logdet(P)
% Create an object
if isa(P,'sdpvar')
if is(P,'hermitian')
superiorto('double')
superiorto('sdpvar')
sys.P = P;
sys.cx = [];
www.eeworm.com/read/472930/6859914
makefile_simple
#
# The compiler and its flags
#
CPP= g++
INCLUDE=-I ./
CPPFLAGS= -g -w $(INCLUDE)
LIBS=-lpthread
#
# Sources and objects
#
COMMON=
PROGRAM=tsinghuaeolus
SRC=agent.cpp \
audit
www.eeworm.com/read/472272/6875193
pas uelementfactory.pas
unit UElementFactory;
{元素工厂}
interface
uses LibXMLParser,UPatternMatcher,classes;
type
{abstract base class for all template elements}
TTemplateElement=class
constructor Create;
www.eeworm.com/read/395554/8168272
c arraylist.c
#include "arraylist.h"
int listAdd(struct ArrayList* list,void* object)
{
int i=0;
if(list->count >= list->capacity)
{
if(list->capacity == 0)
{
list->objects = malloc( 4 * sizeo
www.eeworm.com/read/294924/8192802
makefile
objects = main.o emitter.o error.o init.o lexer.o parser.o symbol.o
edit : $(objects)
gcc -o edit $(objects)
$(objects) : global.h
.PHONY : clean
clean :
rm edit.exe $(objects)