1// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
2// Copyright (C) INRIA - Serge Steer
3//
4// Copyright (C) 2012 - 2016 - Scilab Enterprises
5//
6// This file is hereby licensed under the terms of the GNU GPL v2.0,
7// pursuant to article 5.3.4 of the CeCILL v.2.1.
8// This file was originally licensed under the terms of the CeCILL v2.1,
9// and continues to be available under such terms.
10// For more information, see the COPYING file which you should have received
11// along with this program.
12
13function M=%c_i_c(varargin)
14    //insertion of an string matrix in an matrix of string for more than 2 indices
15    M=varargin($)
16    M=matrix(M(:), size(M))
17    varargin($)=M;
18    M=generic_i_hm("",varargin(:))
19endfunction
20