<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250</link>
    <title>MATLAB Central Newsreader - Creating and Running Jobs with a Local Scheduler</title>
    <description>Feed for thread: Creating and Running Jobs with a Local Scheduler</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 09 Oct 2008 13:53:21 -0400</pubDate>
      <title>Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604409</link>
      <author>Mr. CFD</author>
      <description>I am in the process of setting up my machine to eventually submit jobs to a cluster through MATLABs Parallel Computing toolbox. &lt;br&gt;
&lt;br&gt;
At the first stage, just to familiarize myself to the process, I have attempted to run a job on my local machine through the local scheduler.&lt;br&gt;
&lt;br&gt;
A tutorial is set-up to produce five tasks, where each job generates a 3-by-3 matrix of random numbers.&lt;br&gt;
==========================================================&lt;br&gt;
sched = findResource('scheduler','type','local');&lt;br&gt;
obj = createJob();&lt;br&gt;
createTask(obj, @rand, 1, {{3,3} {3,3} {3,3} {3,3} {3,3}});&lt;br&gt;
get(obj,'Tasks')&lt;br&gt;
submit(obj);&lt;br&gt;
waitForState(obj)&lt;br&gt;
out = getAllOutputArguments(obj);&lt;br&gt;
==========================================================&lt;br&gt;
Unfortunately, the simulation continues to display a 'failed' state run, when checking the status though: &lt;br&gt;
get(obj,'Tasks')&lt;br&gt;
As a result, the final solution through the out = getAllOutputArguments(obj); displays an &quot;Empty cell array: 5-by-0&quot;&lt;br&gt;
&lt;br&gt;
Can you please suggest what is missing in my code.&lt;br&gt;
Many thanks</description>
    </item>
    <item>
      <pubDate>Thu, 09 Oct 2008 14:39:01 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604439</link>
      <author>Edric M Ellis</author>
      <description>&quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; I am in the process of setting up my machine to eventually submit jobs to a&lt;br&gt;
&amp;gt; cluster through MATLABs Parallel Computing toolbox.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; At the first stage, just to familiarize myself to the process, I have&lt;br&gt;
&amp;gt; attempted to run a job on my local machine through the local scheduler.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; A tutorial is set-up to produce five tasks, where each job generates a 3-by-3 matrix of random numbers.&lt;br&gt;
&amp;gt; ==========================================================&lt;br&gt;
&amp;gt; sched = findResource('scheduler','type','local');&lt;br&gt;
&amp;gt; obj = createJob();&lt;br&gt;
&lt;br&gt;
the above line creates a job called &quot;obj&quot; on whatever happens to be your default&lt;br&gt;
scheduler - you should force it to use the scheduler &quot;sched&quot; by doing&lt;br&gt;
&lt;br&gt;
obj = createJob( sched );&lt;br&gt;
&lt;br&gt;
Other than that, your code looks fine.&lt;br&gt;
&lt;br&gt;
&amp;gt; Unfortunately, the simulation continues to display a 'failed' state run, when&lt;br&gt;
&amp;gt; checking the status though: get(obj,'Tasks')&lt;br&gt;
&lt;br&gt;
If you still get the problems, one way of getting more information is to check&lt;br&gt;
the &quot;debug log&quot; for a task, like so:&lt;br&gt;
&lt;br&gt;
sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
&lt;br&gt;
Posting that output here may help - preferably after executing&lt;br&gt;
&lt;br&gt;
setenv( 'MDCE_DEBUG', 'true' );&lt;br&gt;
&lt;br&gt;
to give more debug information.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
&lt;br&gt;
Edric.</description>
    </item>
    <item>
      <pubDate>Fri, 10 Oct 2008 04:00:19 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604582</link>
      <author>Mr. CFD</author>
      <description>Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message &amp;lt;ytwd4i9hlyy.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I am in the process of setting up my machine to eventually submit jobs to a&lt;br&gt;
&amp;gt; &amp;gt; cluster through MATLABs Parallel Computing toolbox.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; At the first stage, just to familiarize myself to the process, I have&lt;br&gt;
&amp;gt; &amp;gt; attempted to run a job on my local machine through the local scheduler.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; A tutorial is set-up to produce five tasks, where each job generates a 3-by-3 matrix of random numbers.&lt;br&gt;
&amp;gt; &amp;gt; ==========================================================&lt;br&gt;
&amp;gt; &amp;gt; sched = findResource('scheduler','type','local');&lt;br&gt;
&amp;gt; &amp;gt; obj = createJob();&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; the above line creates a job called &quot;obj&quot; on whatever happens to be your default&lt;br&gt;
&amp;gt; scheduler - you should force it to use the scheduler &quot;sched&quot; by doing&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; obj = createJob( sched );&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Other than that, your code looks fine.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Unfortunately, the simulation continues to display a 'failed' state run, when&lt;br&gt;
&amp;gt; &amp;gt; checking the status though: get(obj,'Tasks')&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; If you still get the problems, one way of getting more information is to check&lt;br&gt;
&amp;gt; the &quot;debug log&quot; for a task, like so:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Posting that output here may help - preferably after executing&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; setenv( 'MDCE_DEBUG', 'true' );&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; to give more debug information.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Edric.&lt;br&gt;
&lt;br&gt;
Thanks Edric. &lt;br&gt;
Here is the error that I am getting from &lt;br&gt;
sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
===========================================================&lt;br&gt;
LOG FILE OUTPUT:&lt;br&gt;
License checkout failed.&lt;br&gt;
License Manager Error -9&lt;br&gt;
This error may occur when: &lt;br&gt;
-The hostid of this computer does not match the hostid in the license file. &lt;br&gt;
-A Designated Computer installation is in use by another user. &lt;br&gt;
If no other user is currently running MATLAB, you may need to activate.&lt;br&gt;
==========================================================&lt;br&gt;
The first point may apply here, so I am currently working my way through this. Hope to have this resolved shortly.&lt;br&gt;
Thanks again.</description>
    </item>
    <item>
      <pubDate>Fri, 10 Oct 2008 04:46:01 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604586</link>
      <author>Mr. CFD</author>
      <description>&quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; wrote in message &amp;lt;gcmk0j$56o$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message &amp;lt;ytwd4i9hlyy.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; I am in the process of setting up my machine to eventually submit jobs to a&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; cluster through MATLABs Parallel Computing toolbox.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; At the first stage, just to familiarize myself to the process, I have&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; attempted to run a job on my local machine through the local scheduler.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; A tutorial is set-up to produce five tasks, where each job generates a 3-by-3 matrix of random numbers.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; ==========================================================&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; sched = findResource('scheduler','type','local');&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; obj = createJob();&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; the above line creates a job called &quot;obj&quot; on whatever happens to be your default&lt;br&gt;
&amp;gt; &amp;gt; scheduler - you should force it to use the scheduler &quot;sched&quot; by doing&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; obj = createJob( sched );&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Other than that, your code looks fine.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Unfortunately, the simulation continues to display a 'failed' state run, when&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; checking the status though: get(obj,'Tasks')&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; If you still get the problems, one way of getting more information is to check&lt;br&gt;
&amp;gt; &amp;gt; the &quot;debug log&quot; for a task, like so:&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Posting that output here may help - preferably after executing&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; setenv( 'MDCE_DEBUG', 'true' );&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; to give more debug information.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Cheers,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Edric.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks Edric. &lt;br&gt;
&amp;gt; Here is the error that I am getting from &lt;br&gt;
&amp;gt; sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
&amp;gt; ===========================================================&lt;br&gt;
&amp;gt; LOG FILE OUTPUT:&lt;br&gt;
&amp;gt; License checkout failed.&lt;br&gt;
&amp;gt; License Manager Error -9&lt;br&gt;
&amp;gt; This error may occur when: &lt;br&gt;
&amp;gt; -The hostid of this computer does not match the hostid in the license file. &lt;br&gt;
&amp;gt; -A Designated Computer installation is in use by another user. &lt;br&gt;
&amp;gt; If no other user is currently running MATLAB, you may need to activate.&lt;br&gt;
&amp;gt; ==========================================================&lt;br&gt;
&amp;gt; The first point may apply here, so I am currently working my way through this. Hope to have this resolved shortly.&lt;br&gt;
&amp;gt; Thanks again.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Just checked. The hostid of my computer does indeed match the hostid in the license file!   </description>
    </item>
    <item>
      <pubDate>Fri, 10 Oct 2008 07:07:55 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604593</link>
      <author>Edric M Ellis</author>
      <description>&quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; wrote in message &amp;lt;gcmk0j$56o$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Thanks Edric. &lt;br&gt;
&amp;gt; &amp;gt; Here is the error that I am getting from &lt;br&gt;
&amp;gt; &amp;gt; sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
&amp;gt; &amp;gt; ===========================================================&lt;br&gt;
&amp;gt; &amp;gt; LOG FILE OUTPUT:&lt;br&gt;
&amp;gt; &amp;gt; License checkout failed.&lt;br&gt;
&amp;gt; &amp;gt; License Manager Error -9&lt;br&gt;
&amp;gt; &amp;gt; This error may occur when: &lt;br&gt;
&amp;gt; &amp;gt; -The hostid of this computer does not match the hostid in the license file. &lt;br&gt;
&amp;gt; &amp;gt; -A Designated Computer installation is in use by another user. &lt;br&gt;
&amp;gt; &amp;gt; If no other user is currently running MATLAB, you may need to activate.&lt;br&gt;
&amp;gt; &amp;gt; ==========================================================&lt;br&gt;
&amp;gt; &amp;gt; The first point may apply here, so I am currently working my way through&lt;br&gt;
&amp;gt; &amp;gt; this. Hope to have this resolved shortly.  Thanks again.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Just checked. The hostid of my computer does indeed match the hostid in the&lt;br&gt;
&amp;gt; license file!&lt;br&gt;
&lt;br&gt;
Hi,&lt;br&gt;
&lt;br&gt;
That certainly seems to have narrowed things down.  Could I suggest you contact&lt;br&gt;
our installation support people - they know way more than I do about this sort&lt;br&gt;
of licencing thing.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
&lt;br&gt;
Edric.</description>
    </item>
    <item>
      <pubDate>Fri, 10 Oct 2008 08:34:08 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604605</link>
      <author>Mr. CFD</author>
      <description>Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message &amp;lt;ytwprm9q65w.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; wrote in message &amp;lt;gcmk0j$56o$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Thanks Edric. &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Here is the error that I am getting from &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; sched.getDebugLog( obj.Tasks(1) )&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; ===========================================================&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; LOG FILE OUTPUT:&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; License checkout failed.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; License Manager Error -9&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; This error may occur when: &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; -The hostid of this computer does not match the hostid in the license file. &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; -A Designated Computer installation is in use by another user. &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; If no other user is currently running MATLAB, you may need to activate.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; ==========================================================&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; The first point may apply here, so I am currently working my way through&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; this. Hope to have this resolved shortly.  Thanks again.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Just checked. The hostid of my computer does indeed match the hostid in the&lt;br&gt;
&amp;gt; &amp;gt; license file!&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; That certainly seems to have narrowed things down.  Could I suggest you contact&lt;br&gt;
&amp;gt; our installation support people - they know way more than I do about this sort&lt;br&gt;
&amp;gt; of licencing thing.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Edric.&lt;br&gt;
&lt;br&gt;
Hi Edric,&lt;br&gt;
I sent of an email to mathworks in regards to this. In the meantime, I decided to upgrade to 2008b, since it was reported that the parallel computing toolbox was updated. Tried the same exercise again on the newer version and happy to report, it ran smoothly! Still don't really know why it was an issue in the previous older version, but the newer copy seemed to have resolved this issue.&lt;br&gt;
&lt;br&gt;
Have now uploaded the name task onto a cluster, to see how it goes on that. It seems that the job is set on default walltime, which in this case is 3 months! Thus, you can imagine my job will be on queue for sometime! According to the notes provided by the computing facility, there is no functionality within the PCT to allow ffor the selection of a walltime. Sounds strange! Is that really the case?  &lt;br&gt;
Thanks </description>
    </item>
    <item>
      <pubDate>Fri, 10 Oct 2008 09:16:21 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604611</link>
      <author>Edric M Ellis</author>
      <description>&quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; I sent of an email to mathworks in regards to this. In the meantime, I decided&lt;br&gt;
&amp;gt; to upgrade to 2008b, since it was reported that the parallel computing toolbox&lt;br&gt;
&amp;gt; was updated. Tried the same exercise again on the newer version and happy to&lt;br&gt;
&amp;gt; report, it ran smoothly! Still don't really know why it was an issue in the&lt;br&gt;
&amp;gt; previous older version, but the newer copy seemed to have resolved this issue.&lt;br&gt;
&lt;br&gt;
That's good news. I'm not sure if you're already aware, but you do need to have&lt;br&gt;
the same version of MATLAB installed on your cluster too. &lt;br&gt;
&lt;br&gt;
&amp;gt; Have now uploaded the name task onto a cluster, to see how it goes on that. It&lt;br&gt;
&amp;gt; seems that the job is set on default walltime, which in this case is 3 months!&lt;br&gt;
&amp;gt; Thus, you can imagine my job will be on queue for sometime! According to the&lt;br&gt;
&amp;gt; notes provided by the computing facility, there is no functionality within the&lt;br&gt;
&amp;gt; PCT to allow ffor the selection of a walltime. Sounds strange! Is that really&lt;br&gt;
&amp;gt; the case?  Thanks&lt;br&gt;
&lt;br&gt;
What scheduler are you using? If you're using one of our built-in integrations&lt;br&gt;
(i.e. Torque, PBSPro, or LSF), you can add any arbitrary command-line flags to&lt;br&gt;
qsub by setting things in the &quot;SubmitArguments&quot; property of the scheduler&lt;br&gt;
object. (Torque and PBSPro also have the ResourceTemplate property). Let me know&lt;br&gt;
if this doesn't work for you.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
&lt;br&gt;
Edric.</description>
    </item>
    <item>
      <pubDate>Sat, 11 Oct 2008 04:17:02 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604736</link>
      <author>Mr. CFD</author>
      <description>Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message &amp;lt;ytwljwwresa.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I sent of an email to mathworks in regards to this. In the meantime, I decided&lt;br&gt;
&amp;gt; &amp;gt; to upgrade to 2008b, since it was reported that the parallel computing toolbox&lt;br&gt;
&amp;gt; &amp;gt; was updated. Tried the same exercise again on the newer version and happy to&lt;br&gt;
&amp;gt; &amp;gt; report, it ran smoothly! Still don't really know why it was an issue in the&lt;br&gt;
&amp;gt; &amp;gt; previous older version, but the newer copy seemed to have resolved this issue.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; That's good news. I'm not sure if you're already aware, but you do need to have&lt;br&gt;
&amp;gt; the same version of MATLAB installed on your cluster too. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Have now uploaded the name task onto a cluster, to see how it goes on that. It&lt;br&gt;
&amp;gt; &amp;gt; seems that the job is set on default walltime, which in this case is 3 months!&lt;br&gt;
&amp;gt; &amp;gt; Thus, you can imagine my job will be on queue for sometime! According to the&lt;br&gt;
&amp;gt; &amp;gt; notes provided by the computing facility, there is no functionality within the&lt;br&gt;
&amp;gt; &amp;gt; PCT to allow ffor the selection of a walltime. Sounds strange! Is that really&lt;br&gt;
&amp;gt; &amp;gt; the case?  Thanks&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; What scheduler are you using? If you're using one of our built-in integrations&lt;br&gt;
&amp;gt; (i.e. Torque, PBSPro, or LSF), you can add any arbitrary command-line flags to&lt;br&gt;
&amp;gt; qsub by setting things in the &quot;SubmitArguments&quot; property of the scheduler&lt;br&gt;
&amp;gt; object. (Torque and PBSPro also have the ResourceTemplate property). Let me know&lt;br&gt;
&amp;gt; if this doesn't work for you.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Edric.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Hi Edric,&lt;br&gt;
Thanks for your message. &lt;br&gt;
&lt;br&gt;
&amp;gt; That's good news. I'm not sure if you're already aware, &amp;gt; but you do need to have the same version of MATLAB       &amp;gt; installed on your cluster too.&lt;br&gt;
&lt;br&gt;
This must explain why I get the following error when the job was submitted to the cluster. What are your thoughts?&lt;br&gt;
===========================================================&lt;br&gt;
Warning: you did not specify a shell in the first line of your PBS script&lt;br&gt;
We have assumed you wish to use bash, however please update your script with a valid shell&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt; M A T L A B (R) &amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Copyright 1984-2008 The MathWorks, Inc.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Version 7.6.0.324 (R2008a)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;February 10, 2008&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&lt;br&gt;
To get started, type one of these: helpwin, helpdesk, or demo.&lt;br&gt;
For product information, visit www.mathworks.com.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
MATLAB core dump:  Exit on fatal error (no core) enabled.&lt;br&gt;
About to construct the storage object using constructor &quot;makeFileStorageObject&quot; and location &quot;/home/matlab/&quot;&lt;br&gt;
About to find job proxy using location &quot;Job1&quot;&lt;br&gt;
About to find task proxy using location &quot;Job1/Task1&quot;&lt;br&gt;
Completed pre-execution phase&lt;br&gt;
Unexpected error in PreJobEvaluate - MATLAB will now exit.&lt;br&gt;
Error using ==&amp;gt; pSetInitData at 39&lt;br&gt;
Error setting license information from job.&lt;br&gt;
Nested Error :&lt;br&gt;
No method 'addFeatures' with matching signature found for class 'com.mathworks.toolbox.distcomp.nativedmatlab.NativeMethods'. &lt;br&gt;
===========================================================&lt;br&gt;
Like I said in my post, I have upgraded to R2008b and on the cluster they have R2008a. I have since requested them to upgrade to the newer version if possible. &lt;br&gt;
&lt;br&gt;
When this comes through, then I can give you more information in regards to the scheduler setting that I have. Hopefully we can then set the appropriate walltime.&lt;br&gt;
&lt;br&gt;
Thanks again for your feedback and time</description>
    </item>
    <item>
      <pubDate>Mon, 13 Oct 2008 07:23:56 -0400</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#604910</link>
      <author>Edric M Ellis</author>
      <description>&quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;lt;ytwljwwresa.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; That's good news. I'm not sure if you're already aware, but you do need to&lt;br&gt;
&amp;gt; &amp;gt; have the same version of MATLAB installed on your cluster too.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; This must explain why I get the following error when the job was submitted to&lt;br&gt;
&amp;gt; the cluster. What are your thoughts?&lt;br&gt;
&lt;br&gt;
Yes, that error is a consequence of sending a job from R2008b for execution&lt;br&gt;
under R2008a.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
&lt;br&gt;
Edric.</description>
    </item>
    <item>
      <pubDate>Tue, 11 Nov 2008 08:34:01 -0500</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#610230</link>
      <author>Mr. CFD</author>
      <description>Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message &amp;lt;ytwd4i5q7oz.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;ytwljwwresa.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; That's good news. I'm not sure if you're already aware, but you do need to&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; have the same version of MATLAB installed on your cluster too.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; This must explain why I get the following error when the job was submitted to&lt;br&gt;
&amp;gt; &amp;gt; the cluster. What are your thoughts?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Yes, that error is a consequence of sending a job from R2008b for execution&lt;br&gt;
&amp;gt; under R2008a.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Edric.&lt;br&gt;
&lt;br&gt;
Hi Edric,&lt;br&gt;
Well we have finally got R2008b on the clusters and the simple (@rand) tutorial provided in the help file works fine,when submitting it to the cluster, unlike before when the two MATLAB versions were different.&lt;br&gt;
Now I am trying to feed in my own function and have it submitted to the cluster. Have a very simple test.m model as below&lt;br&gt;
=====================================================&lt;br&gt;
function result=test(x)&lt;br&gt;
y = x+2 ;&lt;br&gt;
result = {y};&lt;br&gt;
=======================================================&lt;br&gt;
Using the following submit functions:&lt;br&gt;
&lt;br&gt;
clusterHost = 'xxx.xxx.xxx';&lt;br&gt;
remoteDataLocation = '/home/matlab/';&lt;br&gt;
timeLimit = '00:02:00'; &lt;br&gt;
sched = findResource('scheduler', 'type', 'generic');&lt;br&gt;
set(sched, 'DataLocation', 'C:\MATLAB')&lt;br&gt;
set(sched, 'ClusterMatlabRoot', '/usr/local/matlab/R2008b');&lt;br&gt;
set(sched, 'HasSharedFilesystem', true)&lt;br&gt;
set(sched, 'ClusterOsType', 'unix');&lt;br&gt;
set(sched, 'GetJobStateFcn', @pbsGetJobState);&lt;br&gt;
set(sched, 'DestroyJobFcn', @pbsDestroyJob);&lt;br&gt;
set(sched, 'SubmitFcn', {@pbsNonSharedSimpleSubmitFcn, timeLimit,clusterHost, remoteDataLocation});&lt;br&gt;
&lt;br&gt;
j = createJob(sched)&lt;br&gt;
createTask(j, @test, 1, {{1}  {3}});&lt;br&gt;
submit(j)&lt;br&gt;
&lt;br&gt;
waitForState(j)&lt;br&gt;
&lt;br&gt;
results = getAllOutputArguments(j);&lt;br&gt;
&lt;br&gt;
celldisp(results)&lt;br&gt;
=======================================================&lt;br&gt;
The clusters report no errors, but MATLAB window continues to display an 'Empty cell array: 1-by-0' for the results output.  Do you have any idea where the problem is?&lt;br&gt;
Thanks</description>
    </item>
    <item>
      <pubDate>Tue, 11 Nov 2008 08:43:01 -0500</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#610232</link>
      <author>Mr. CFD</author>
      <description>Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message &amp;lt;ytwd4i5q7oz.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Edric M Ellis &amp;lt;eellis@mathworks.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;ytwljwwresa.fsf@uk-eellis-deb4-64.mathworks.co.uk&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; That's good news. I'm not sure if you're already aware, but you do need to&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; have the same version of MATLAB installed on your cluster too.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; This must explain why I get the following error when the job was submitted to&lt;br&gt;
&amp;gt; &amp;gt; the cluster. What are your thoughts?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Yes, that error is a consequence of sending a job from R2008b for execution&lt;br&gt;
&amp;gt; under R2008a.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Cheers,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Edric.&lt;br&gt;
&lt;br&gt;
Hi Edric,&lt;br&gt;
Well we have finally got R2008b on the clusters and the simple (@rand) tutorial provided in the help file works fine,when submitting it to the cluster, unlike before when the two MATLAB versions were different.&lt;br&gt;
Now I am trying to feed in my own function and have it submitted to the cluster. Have a very simple test.m model as below&lt;br&gt;
=====================================================&lt;br&gt;
function result=test(x)&lt;br&gt;
y = x+2 ;&lt;br&gt;
result = {y};&lt;br&gt;
=======================================================&lt;br&gt;
Using the following submit functions:&lt;br&gt;
&lt;br&gt;
clusterHost = 'xxx.xxx.xxx';&lt;br&gt;
remoteDataLocation = '/home/matlab/';&lt;br&gt;
timeLimit = '00:02:00'; &lt;br&gt;
sched = findResource('scheduler', 'type', 'generic');&lt;br&gt;
set(sched, 'DataLocation', 'C:\MATLAB')&lt;br&gt;
set(sched, 'ClusterMatlabRoot', '/usr/local/matlab/R2008b');&lt;br&gt;
set(sched, 'HasSharedFilesystem', true)&lt;br&gt;
set(sched, 'ClusterOsType', 'unix');&lt;br&gt;
set(sched, 'GetJobStateFcn', @pbsGetJobState);&lt;br&gt;
set(sched, 'DestroyJobFcn', @pbsDestroyJob);&lt;br&gt;
set(sched, 'SubmitFcn', {@pbsNonSharedSimpleSubmitFcn, timeLimit,clusterHost, remoteDataLocation});&lt;br&gt;
&lt;br&gt;
j = createJob(sched)&lt;br&gt;
createTask(j, @test, 1, {{1}  {3}});&lt;br&gt;
submit(j)&lt;br&gt;
&lt;br&gt;
waitForState(j)&lt;br&gt;
&lt;br&gt;
results = getAllOutputArguments(j);&lt;br&gt;
&lt;br&gt;
celldisp(results)&lt;br&gt;
=======================================================&lt;br&gt;
The clusters report no errors, but MATLAB window continues to display an 'Empty cell array: 1-by-0' for the results output.  Do you have any idea where the problem is?&lt;br&gt;
Thanks</description>
    </item>
    <item>
      <pubDate>Tue, 11 Nov 2008 11:10:23 -0500</pubDate>
      <title>Re: Creating and Running Jobs with a Local Scheduler</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/237250#610255</link>
      <author>Edric M Ellis</author>
      <description>&quot;Mr. CFD&quot; &amp;lt;s2108860@student.rmit.edu.au&amp;gt; writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; Well we have finally got R2008b on the clusters and the simple (@rand)&lt;br&gt;
&amp;gt; tutorial provided in the help file works fine,when submitting it to the&lt;br&gt;
&amp;gt; cluster, unlike before when the two MATLAB versions were different.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Now I am trying to feed in my own function and have it submitted to the&lt;br&gt;
&amp;gt; cluster. Have a very simple test.m model as below&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; =====================================================&lt;br&gt;
&amp;gt; function result=test(x)&lt;br&gt;
&amp;gt; y = x+2 ;&lt;br&gt;
&amp;gt; result = {y};&lt;br&gt;
&amp;gt; =======================================================&lt;br&gt;
&amp;gt; Using the following submit functions:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; clusterHost = 'xxx.xxx.xxx'; [...]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; j = createJob(sched)&lt;br&gt;
&amp;gt; createTask(j, @test, 1, {{1}  {3}});&lt;br&gt;
&amp;gt; submit(j)&lt;br&gt;
&lt;br&gt;
I suspect that the problem is that your cluster cannot find &quot;test.m&quot;, you should&lt;br&gt;
add that to the FileDependencies of the job, like so:&lt;br&gt;
&lt;br&gt;
j.FileDependencies = {'test.m'};&lt;br&gt;
&lt;br&gt;
(This is not needed for &quot;rand&quot; since that's already on the MATLAB path of the&lt;br&gt;
workers.)&lt;br&gt;
&lt;br&gt;
&amp;gt; The clusters report no errors, but MATLAB window continues to display an&lt;br&gt;
&amp;gt; 'Empty cell array: 1-by-0' for the results output.  &lt;br&gt;
&lt;br&gt;
When you say &quot;The clusters report no errors&quot; - where are you looking? Did you&lt;br&gt;
try displaying the job (simply type the job name with no semicolon)? That might&lt;br&gt;
indicate problems. Here's what I see if I try to run a job which doesn't have&lt;br&gt;
correct FileDependencies:&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; j = jm.createJob(); j.createTask( @test, 1, {{1}, {3}} );&lt;br&gt;
&amp;gt;&amp;gt; j.submit(); j.wait();&lt;br&gt;
&amp;gt;&amp;gt; j&lt;br&gt;
&lt;br&gt;
j =&lt;br&gt;
&lt;br&gt;
Job ID 2 Information&lt;br&gt;
====================&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;UserName : eellis&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;State : finished&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SubmitTime : Tue Nov 11 10:56:30 GMT 2008&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;StartTime : Tue Nov 11 10:56:30 GMT 2008&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Running Duration : 0 days 0h 0m 2s&lt;br&gt;
&lt;br&gt;
- Data Dependencies&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;FileDependencies : {}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PathDependencies : {}&lt;br&gt;
&lt;br&gt;
- Associated Task(s)&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Number Pending  : 0&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Number Running  : 0&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Number Finished : 2&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;TaskID of errors : [1  2]&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; j.Tasks(1)&lt;br&gt;
ans =&lt;br&gt;
&lt;br&gt;
Task ID 1 from Job ID 4 Information&lt;br&gt;
===================================&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;State : finished&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Function : @test&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;StartTime : Tue Nov 11 10:56:30 GMT 2008&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Running Duration : 0 days 0h 0m 1s&lt;br&gt;
&lt;br&gt;
- Task Result Properties&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ErrorIdentifier : MATLAB:UndefinedFunction&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ErrorMessage : Undefined function or method 'test' for input...&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;: s of type 'double'.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Error Stack :&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
&lt;br&gt;
Edric.</description>
    </item>
  </channel>
</rss>

