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// and continues to be available under such terms.
7// For more information, see the COPYING file which you should have received
8// along with this program.
9function r=%s_q_zpk(a,b)
10    //r=a.\b
11    r=zpk([],[],a,b.dt).\b;
12endfunction
13
14