No BSD License  

Highlights from
CCS Toolbox

from CCS Toolbox by Marc Molinari
Interfaces Matlab to the Microsoft Compute Cluster Server via XML

ccsjob()
function job = ccsjob()
% Returns Matlab structure describing CCS job. 
% A CCS job consists of several tasks.
% 
% SYNTAX:
%   job = ccsjob
% 
% INPUT:
%
% OUTPUT:
%   job     A Matlab data structure with fieldnames corresponding to entries in the 
%           CCS xml submission file. A CCS job consists of several tasks.
%
% SEE ALSO: ccstask

% ----------------------------------------------------------
% Copyright (C) 2006, Marc Molinari
% CCS Toolbox for Matlab
% Author: Dr Marc Molinari <m.molinari@soton.ac.uk>
% Version: DRAFT 2006/07/20


% ATTRIBUTE FIELDS
job.Name            = 'myJobName';
job.Project         = 'myProjectName';
job.Priority        = 'Normal';
job.SoftwareLicense = '';
job.MinimumNumberOfProcessors = '1';
job.MaximumNumberOfProcessors = '1';
job.Runtime         = 'Infinite';
job.IsExclusive     = 'false';
job.RunUntilCanceled = 'false';
job.AskedNodes      = '';

% data fields
job.Tasks(1) = ccstask;
job.Tasks(1) = [];

Contact us at files@mathworks.com