1% MBDyn (C) is a multibody analysis code.
2% http://www.mbdyn.org
3%
4% Copyright (C) 1996-2017
5%
6% Pierangelo Masarati	<masarati@aero.polimi.it>
7% Paolo Mantegazza	<mantegazza@aero.polimi.it>
8%
9% Dipartimento di Ingegneria Aerospaziale - Politecnico di Milano
10% via La Masa, 34 - 20156 Milano, Italy
11% http://www.aero.polimi.it
12%
13% Changing this copyright notice is forbidden.
14%
15% This program is free software; you can redistribute it and/or modify
16% it under the terms of the GNU General Public License as published by
17% the Free Software Foundation (version 2 of the License).
18%
19%
20% This program is distributed in the hope that it will be useful,
21% but WITHOUT ANY WARRANTY; without even the implied warranty of
22% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23% GNU General Public License for more details.
24%
25% You should have received a copy of the GNU General Public License
26% along with this program; if not, write to the Free Software
27% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
29% AUTHOR: Reinhard Resch <r.resch@secop.com>
30%        Copyright (C) 2011(-2017) all rights reserved.
31%
32%        The copyright of this code is transferred
33%        to Pierangelo Masarati and Paolo Mantegazza
34%        for use in the software MBDyn as described
35%        in the GNU Public License version 2.1
36
37function [iRows, iCols] = WorkSpaceDim(elem)
38    iRows = int32(15);
39    iCols = int32(15);
40endfunction
41