1// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
2// Copyright (C)  2016 - INRIA - Serge Steer
3//
4// This file is licensed under the terms of the GNU GPL v2.0,
5// pursuant to article 5.3.4 of the CeCILL v.2.1.
6// For more information, see the COPYING file which you should have received
7// along with this program.
8function b=%s_c_zpk(a,b)
9
10    if a==[] then return;end
11    [ma,na]=size(a)
12    if size(b,1)<>ma then
13        error(msprintf(_("%s: Incompatible input arguments #%d and #%d: Same number of rows expected.\n"),"[]",1,2))
14    end
15    b=[zpk(cell(ma,na),cell(ma,na),a,b.dt) b]
16
17endfunction
18