blob: 3cb321e2222daba1ce263328ae207a757427001e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) DIGITEO 2008-2010 - Yann COLLETTE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
function plist = init_param(varargin)
param_name = [];
param_val = [];
if (modulo(length(varargin),2)~=0) then
error(sprintf(gettext("%s: Wrong number of input argument(s): An even number expected.\n"),"init_param"));
end
for i=1:2:length(varargin)
if typeof(varargin(i))~="string" then
error(sprintf(gettext("%s: Wrong type for input argument #%d: String expected.\n"),"init_param",i));
end
end
plist = mlist(["plist"],[]);
for i=1:2:length(varargin)
plist = add_param(plist,varargin(i),varargin(i+1));
end
endfunction
|