Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GaussianProcessTuning/ILNumerics.2.14.4735.573/Functions/builtin/repmat.cs @ 9407

Last change on this file since 9407 was 9102, checked in by gkronber, 12 years ago

#1967: ILNumerics source for experimentation

File size: 6.6 KB
Line 
1///
2///    This file is part of ILNumerics Community Edition.
3///
4///    ILNumerics Community Edition - high performance computing for applications.
5///    Copyright (C) 2006 - 2012 Haymo Kutschbach, http://ilnumerics.net
6///
7///    ILNumerics Community Edition is free software: you can redistribute it and/or modify
8///    it under the terms of the GNU General Public License version 3 as published by
9///    the Free Software Foundation.
10///
11///    ILNumerics Community Edition is distributed in the hope that it will be useful,
12///    but WITHOUT ANY WARRANTY; without even the implied warranty of
13///    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14///    GNU General Public License for more details.
15///
16///    You should have received a copy of the GNU General Public License
17///    along with ILNumerics Community Edition. See the file License.txt in the root
18///    of your distribution package. If not, see <http://www.gnu.org/licenses/>.
19///
20///    In addition this software uses the following components and/or licenses:
21///
22///    =================================================================================
23///    The Open Toolkit Library License
24///   
25///    Copyright (c) 2006 - 2009 the Open Toolkit library.
26///   
27///    Permission is hereby granted, free of charge, to any person obtaining a copy
28///    of this software and associated documentation files (the "Software"), to deal
29///    in the Software without restriction, including without limitation the rights to
30///    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
31///    the Software, and to permit persons to whom the Software is furnished to do
32///    so, subject to the following conditions:
33///
34///    The above copyright notice and this permission notice shall be included in all
35///    copies or substantial portions of the Software.
36///
37///    =================================================================================
38///   
39
40using System;
41using System.Collections.Generic;
42using System.Text;
43using ILNumerics.Storage;
44using ILNumerics.Misc;
45
46
47
48namespace ILNumerics {
49    public partial class ILMath {
50
51
52        /// <summary>
53        /// Array replication
54        /// </summary>
55        /// <param name="X">Input array to be replicated</param>
56        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
57        /// <returns>Reference ILArray as replication of X</returns>
58        public static ILRetArray<double> repmat(ILInArray<double> X, params int[] size) {
59            using (ILScope.Enter(X)) {
60                return new ILRetArray<double>(X.Storage.Repmat(size));
61            }
62        }
63
64#region HYCALPER AUTO GENERATED CODE
65
66        /// <summary>
67        /// Array replication
68        /// </summary>
69        /// <param name="X">Input array to be replicated</param>
70        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
71        /// <returns>Reference ILArray as replication of X</returns>
72        public static ILRetArray<fcomplex> repmat(ILInArray<fcomplex> X, params int[] size) {
73            using (ILScope.Enter(X)) {
74                return new ILRetArray<fcomplex>(X.Storage.Repmat(size));
75            }
76        }
77        /// <summary>
78        /// Array replication
79        /// </summary>
80        /// <param name="X">Input array to be replicated</param>
81        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
82        /// <returns>Reference ILArray as replication of X</returns>
83        public static ILRetArray<complex> repmat(ILInArray<complex> X, params int[] size) {
84            using (ILScope.Enter(X)) {
85                return new ILRetArray<complex>(X.Storage.Repmat(size));
86            }
87        }
88        /// <summary>
89        /// Array replication
90        /// </summary>
91        /// <param name="X">Input array to be replicated</param>
92        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
93        /// <returns>Reference ILArray as replication of X</returns>
94        public static ILRetArray<byte> repmat(ILInArray<byte> X, params int[] size) {
95            using (ILScope.Enter(X)) {
96                return new ILRetArray<byte>(X.Storage.Repmat(size));
97            }
98        }
99        /// <summary>
100        /// Array replication
101        /// </summary>
102        /// <param name="X">Input array to be replicated</param>
103        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
104        /// <returns>Reference ILArray as replication of X</returns>
105        public static ILRetArray<Int64> repmat(ILInArray<Int64> X, params int[] size) {
106            using (ILScope.Enter(X)) {
107                return new ILRetArray<Int64>(X.Storage.Repmat(size));
108            }
109        }
110        /// <summary>
111        /// Array replication
112        /// </summary>
113        /// <param name="X">Input array to be replicated</param>
114        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
115        /// <returns>Reference ILArray as replication of X</returns>
116        public static ILRetArray<Int32> repmat(ILInArray<Int32> X, params int[] size) {
117            using (ILScope.Enter(X)) {
118                return new ILRetArray<Int32>(X.Storage.Repmat(size));
119            }
120        }
121        /// <summary>
122        /// Array replication
123        /// </summary>
124        /// <param name="X">Input array to be replicated</param>
125        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
126        /// <returns>Reference ILArray as replication of X</returns>
127        public static ILRetArray<float> repmat(ILInArray<float> X, params int[] size) {
128            using (ILScope.Enter(X)) {
129                return new ILRetArray<float>(X.Storage.Repmat(size));
130            }
131        }
132
133#endregion HYCALPER AUTO GENERATED CODE
134
135        /// <summary>
136        /// Array replication
137        /// </summary>
138        /// <param name="X">Input array to be replicated</param>
139        /// <param name="size">Dimensions specifier, number of rows, columns .. to replicate this array</param>
140        /// <returns>Reference ILArray as replication of X</returns>
141        public static ILRetArray<T> repmat<T>(ILInArray<T> X, params int[] size) {
142            using (ILScope.Enter(X)) {
143                return new ILRetArray<T>(X.Storage.Repmat(size));
144            }
145        }
146    }
147}
Note: See TracBrowser for help on using the repository browser.