00001 function [varargout] = gs_call(varargin) 00002 % [outputargs] = gs_call('service', inputargs) 00003 % 00004 % Blocking call to the GridSolve network solver. Use 00005 % gs_info('service') to see the the arguments for the service. 00006 00007 if (nargout > 0) 00008 for i=1:nargout, varargout{i} = []; end 00009 [varargout{:}] = matlab_gs_lib(1, varargin{:}); 00010 else 00011 matlab_gs_lib(1, varargin{:}); 00012 end 00013
1.6.3-20100507