source:
issm/oecreview/Archive/20545-21336/ISSM-20858-20859.diff@
21337
Last change on this file since 21337 was 21337, checked in by , 8 years ago | |
---|---|
File size: 1.7 KB |
-
../trunk-jpl/src/m/modules/Chaco.m
1 function [assgn] = Chaco(A,vwgts,ewgts,x,y,z,options,nparts,goal); 2 %CHACO 3 % 4 % Usage: 5 % [assgn] = Chaco(A,vwgts,ewgts,x,y,z,options,nparts,goal); 6 % 7 % A: Input adjacency matrix 8 % vwgts: weights for all vertices 9 % ewgts: weights for all edges 10 % x,y,z: coordinates for inertial method 11 % options: architecture and partitioning options 12 % nparts: number of parts options 13 % goal: desired set sizes 14 15 % Check usage 16 if nargin~=9 17 help Chaco 18 error('Wrong usage (see above)'); 19 end 20 21 % Call mex module 22 [assgn] = Chaco_matlab(A,vwgts,ewgts,x,y,z,options,nparts,goal); -
../trunk-jpl/src/wrappers/matlab/Makefile.am
66 66 Xy2ll.la 67 67 68 68 if CHACO 69 lib_LTLIBRARIES += Chaco .la69 lib_LTLIBRARIES += Chaco_matlab.la 70 70 endif 71 71 if KRIGING 72 72 lib_LTLIBRARIES += Kriging.la … … 150 150 BamgTriangulate_matlab_la_LIBADD = ${deps} $(MPILIB) $(PETSCLIB) $(GSLLIB) $(PROJ4LIB) 151 151 152 152 if CHACO 153 Chaco_ la_SOURCES = ../Chaco/Chaco.cpp154 Chaco_ la_LIBADD = ${deps} $(MPILIB) $(CHACOLIB) $(GSLLIB) $(PROJ4LIB) $(PETSCLIB)153 Chaco_matlab_la_SOURCES = ../Chaco/Chaco.cpp 154 Chaco_matlab_la_LIBADD = ${deps} $(MPILIB) $(CHACOLIB) $(GSLLIB) $(PROJ4LIB) $(PETSCLIB) 155 155 endif 156 156 157 157 ContourToMesh_matlab_la_SOURCES = ../ContourToMesh/ContourToMesh.cpp
Note:
See TracBrowser
for help on using the repository browser.