Changeset 3648 for issm/trunk/externalpackages/scotch/gmap.m
- Timestamp:
- 04/30/10 14:49:35 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/scotch/gmap.m
r3005 r3648 2 2 % function to call the gmap module of the scotch partitioner. 3 3 % 4 % [ status,maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apar,...5 % 4 % [maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apar,... 5 % options) 6 6 % 7 7 % where the required input is: … … 30 30 % 31 31 % the required output is: 32 % status (double, return code from gmap)33 32 % maptab (double [nv x 2], vertex labels and partitions) 34 33 % … … 48 47 % "See default strategy with option '-vs'" 49 48 % 50 function [ status,maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apars,...51 49 function [maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apars,... 50 varargin) 52 51 53 52 if ~nargin … … 59 58 clear gmap_mex 60 59 61 [ status,maptab]=gmap_mex(adj_mat,vlist,vwgt,ewgt,atype,apars,...62 60 [maptab]=gmap_mex(adj_mat,vlist,vwgt,ewgt,atype,apars,... 61 varargin{:}); 63 62 63 % doesn't hurt to clear out after every run, too 64 64 clear gmap_mex 65 65
Note:
See TracChangeset
for help on using the changeset viewer.