Ignore:
Timestamp:
04/30/10 14:49:35 (15 years ago)
Author:
jschierm
Message:

Scotch: removed status output and instead emptied maptab output to avoid matlab missing output warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/externalpackages/scotch/gmap.m

    r3005 r3648  
    22%  function to call the gmap module of the scotch partitioner.
    33%
    4 %  [status,maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apar,...
    5 %                       options)
     4%  [maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apar,...
     5%                options)
    66%
    77%  where the required input is:
     
    3030%
    3131%  the required output is:
    32 %    status     (double, return code from gmap)
    3332%    maptab     (double [nv x 2], vertex labels and partitions)
    3433%
     
    4847%               "See default strategy with option '-vs'"
    4948%
    50 function [status,maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apars,...
    51                               varargin)
     49function [maptab]=gmap(adj_mat,vlist,vwgt,ewgt,atype,apars,...
     50                       varargin)
    5251
    5352if ~nargin
     
    5958clear gmap_mex
    6059
    61 [status,maptab]=gmap_mex(adj_mat,vlist,vwgt,ewgt,atype,apars,...
    62                          varargin{:});
     60[maptab]=gmap_mex(adj_mat,vlist,vwgt,ewgt,atype,apars,...
     61                  varargin{:});
    6362
     63%  doesn't hurt to clear out after every run, too
    6464clear gmap_mex
    6565
Note: See TracChangeset for help on using the changeset viewer.