From: Samuel GOUGEON Date: Thu, 11 Aug 2016 02:09:27 +0000 (+0200) Subject: %r_zeros missing X-Git-Tag: 6.0.0~266 X-Git-Url: http://gitweb.scilab.org/?p=scilab.git;a=commitdiff_plain;h=1ab90384e27ac476e246d77f589f41d99b40598f %r_zeros missing Change-Id: Ic549bf658077cb4a9014168dd75f30d7a85ad0f6 --- diff --git a/scilab/modules/helptools/data/configuration/scilab_macros.txt b/scilab/modules/helptools/data/configuration/scilab_macros.txt index d44f007..a6708bb 100644 --- a/scilab/modules/helptools/data/configuration/scilab_macros.txt +++ b/scilab/modules/helptools/data/configuration/scilab_macros.txt @@ -990,6 +990,7 @@ systmat %r_z_p %r_z_r %r_z_s +%r_zeros %s_1_hm %s_2_hm %s_3_hm diff --git a/scilab/modules/overloading/macros/%r_zeros.sci b/scilab/modules/overloading/macros/%r_zeros.sci new file mode 100644 index 0000000..85195ec --- /dev/null +++ b/scilab/modules/overloading/macros/%r_zeros.sci @@ -0,0 +1,15 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2016 - Samuel GOUGEON +// +// Copyright (C) 2012 - 2016 - Scilab Enterprises +// +// This file is hereby licensed under the terms of the GNU GPL v2.0, +// pursuant to article 5.3.4 of the CeCILL v.2.1. +// This file was originally licensed under the terms of the CeCILL v2.1, +// and continues to be available under such terms. +// For more information, see the COPYING file which you should have received +// along with this program. + +function z = %r_zeros(a) + z = zeros(a.num) +endfunction