Bug in function GiveCPUnumber, Dynare 4.3.0
Posted: Wed Jun 27, 2012 12:47 pm
Hi,
I've tried to use the parallel_test command, but 'Ive encountered the following error message:
??? Error using ==> GiveCPUnumber
Too many input arguments.
The cause is that the header of the function is:
function [nCPU]= GiveCPUnumber (ComputerInformations)
but instead it should be
function [nCPU]= GiveCPUnumber (ComputerInformations, varargin)
After the fix, it worked properly.
Well, hope this is useful.
Regards,
Jose Euclides
I've tried to use the parallel_test command, but 'Ive encountered the following error message:
??? Error using ==> GiveCPUnumber
Too many input arguments.
The cause is that the header of the function is:
function [nCPU]= GiveCPUnumber (ComputerInformations)
but instead it should be
function [nCPU]= GiveCPUnumber (ComputerInformations, varargin)
After the fix, it worked properly.
Well, hope this is useful.
Regards,
Jose Euclides