1,019 bytes added
, 22:46, 28 December 2018
<div style="font-size:30px">'''MATRIXCOPY (a) '''</div><br/>
*<math>a</math> can be any set of values.
==Description==
*This function used to repeat copy of an array.
*Matrix is an Array of numbers which arranged in rows and columns.
*There are different order of matrices.
*In MATRIXCOPY(a),<math>a</math> is any order of values.
*So this will return the copy of the given set of values.
==Examples==
1. MATRIXCOPY([[1,2,3],[4,5,6],[7,8,9]])
<math>
\begin{matrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{matrix}</math>
2.MATRIXCOPY([[10,-11],[13,26],[2,7],[5,18],[3,19]])
<math>
\begin{matrix}
10 & -11 \\
13 & 26 \\
2 & 7 \\
5 &18\\
3 &19
\end{matrix}</math>
==See Also==
*[[Manuals/calci/ANTIDIAGONAL| ANTIDIAGONAL]]
*[[Manuals/calci/CONFERENCE| CONFERENCE]]
*[[Manuals/calci/CIRCULANT| CIRCULANT]]
*[[Manuals/calci/HADAMARD| HADAMARD]]
==References==
*[https://docs.scipy.org/doc/numpy-1.15.0/reference/generated/numpy.matrix.copy.html]
*[[Z_API_Functions | List of Main Z Functions]]
*[[ Z3 | Z3 home ]]