Go to the documentation of this file.00001 function [varargout] = gridsolve(varargin)
00002 % [outputargs] = gridsolve('service', inputargs)
00003 % [outputargs] = gs_call('service', inputargs)
00004 %
00005 % Blocking call to the GridSolve network solver. Use
00006 % gs_info('service') to see the the arguments for the service.
00007
00008 if (nargin == 1 && nargout == 0)
00009 gs_info(varargin{:});
00010 elseif (nargout > 0)
00011 for i=1:nargout, varargout{i} = []; end
00012 [varargout{:}] = matlab_gs_lib(1, varargin{:});
00013 else
00014 matlab_gs_lib(1, varargin{:});
00015 end
00016