Thursday, December 11, 2025
HomeLanguagesPython | Numpy matrix.repeat()

Python | Numpy matrix.repeat()

With the help of Numpy matrix.repeat() method, we can get the repeated value from given matrix and gives output as 1-D array.

Syntax : matrix.repeat(count)

Return : Return 1-D matrix with repeated values

Example #1 :
In this example we can see that we are able to get the repeated values from a given matrix with the help of method matrix.repeat().




# import the important module in python
import numpy as np
          
# make matrix with numpy
gfg = np.matrix('[64, 1; 12, 3]')
          
# applying matrix.repeat() method
neveropen = gfg.repeat(2)
    
print(neveropen)


Output:

[[64 64  1  1 12 12  3  3]]

Example #2 :




# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, -9]')
          
# applying matrix.repeat() method
neveropen = gfg.repeat(3)
    
print(neveropen)


Output:

[[ 1  1  1  2  2  2  3  3  3  4  4  4  5  5  5  6  6  6  7  7  7  8  8  8
  -9 -9 -9]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7194 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS