This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / matlib / repmat

function

numpy.matlib:repmat

source: build-install/usr/lib/python3.14/site-packages/numpy/matlib.py :332

Signature

def   repmat ( a m n )

Summary

Repeat a 0-D to 2-D array or matrix MxN times.

Parameters

a : array_like

The array or matrix to be repeated.

m, n : int

The number of times a is repeated along the first and second axes.

Returns

out : ndarray

The result of repeating a.

Examples

import numpy.matlib
a0 = np.array(1)
np.matlib.repmat(a0, 2, 3)
a1 = np.arange(4)
np.matlib.repmat(a1, 2, 2)
a2 = np.asmatrix(np.arange(6).reshape(2, 3))
np.matlib.repmat(a2, 2, 3)

Aliases

  • numpy.matlib.repmat