numpy.ones() in Python
numpy.ones(shape, dtype = None, order = ‘C’) : Return a new array of given shape and type, with ones.
Parameters :
shape : integer or sequence of integers
order : C_contiguous or F_contiguous
C-contiguous order in memory(last index varies the fastest)
C order means that operating row-rise on the array will be slightly quicker
FORTRAN-contiguous order in memory (first index varies the fastest).
F order means that column-wise operations will be faster.
dtype : [optional, float(byDeafult)] Data type of returned array.
Returns :
ndarray of ones having given shape, order and datatype.
# Python Program illustrating # numpy.ones method import numpy as geek b = geek.ones(2, dtype = int) print("Matrix b : \n", b) a = geek.ones([2, 2], dtype = int) print("\nMatrix a : \n", a) c = geek.ones([3, 3]) print("\nMatrix c : \n", c) |
Output :
Matrix b : [1 1] Matrix a : [[1 1] [1 1]] Matrix c : [[ 1. 1. 1.] [ 1. 1. 1.] [ 1. 1. 1.]]
Reference :
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.ones.html
Note : Ones, unlike zeros and empty, does not set the array values to zero or random values respectively.Also, these codes won’t run on online-ID. Please run them on your systems to explore the working.
This article is contributed by Mohit Gupta_OMG 😀. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Python | Merge Python key values to list
- Reading Python File-Like Objects from C | Python
- Python | Index of Non-Zero elements in Python list
- Important differences between Python 2.x and Python 3.x with examples
- Python | Sort Python Dictionaries by Key or Value
- Python | Add Logging to Python Libraries
- Python | Set 4 (Dictionary, Keywords in Python)
- Python | Add Logging to a Python Script
- Python | Visualizing O(n) using Python
- JavaScript vs Python : Can Python Overtop JavaScript by 2020?
- Any & All in Python
- bin() in Python
- Python Set | pop()
- Python vs PHP
- Use of min() and max() in Python



