

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Return a new array of given shape filled with ones in Numpy
To return a new array of given shape and type, filled with ones, use the ma.one() method in Python Numpy. The 1st parameter sets the shape of the array.
The dtype parameter is the desired data-type for the array. The order parameter suggests whether to store multi-dimensional data in row-major (C-style) or column-major (Fortran-style) order in memory.
A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an array of booleans that determines for each element of the associated array whether the value is valid or not.
Steps
At first, import the required library −
import numpy as np import numpy.ma as ma
Return a new array of given shape and type, filled with ones using the ma.one() method in Python Numpy. The 1st parameter sets the shape of the array −
arr = ma.ones((5,5))
Displaying our array −
print("Array...\n",arr)
Get the datatype −
print("\nArray datatype...\n",arr.dtype)
Get the dimensions of the Array −
print("\nArray Dimensions...\n",arr.ndim)
Get the shape of the Array −
print("\nOur Array Shape...\n",arr.shape)
Get the number of elements of the Array −
print("\nElements in the Array...\n",arr.size)
Example
# Python ma.MaskedArray - Return a new array of given shape filled with ones import numpy as np import numpy.ma as ma # To return a new array of given shape and type, filled with ones,use the ma.one() method in Python Numpy # The 1st parameter sets the shape of the array arr = ma.ones((5,5)) # Displaying our array print("Array...\n",arr) # Get the datatype print("\nArray datatype...\n",arr.dtype) # Get the dimensions of the Array print("\nArray Dimensions...\n",arr.ndim) # Get the shape of the Array print("\nOur Array Shape...\n",arr.shape) # Get the number of elements of the Array print("\nElements in the Array...\n",arr.size)
Output
Array... [[1. 1. 1. 1. 1.] [1. 1. 1. 1. 1.] [1. 1. 1. 1. 1.] [1. 1. 1. 1. 1.] [1. 1. 1. 1. 1.]] Array datatype... float64 Array Dimensions... 2 Our Array Shape... (5, 5) Elements in the Array... 25
- Related Questions & Answers
- Return a new array of a given shape filled with ones in Numpy
- Return a new array of given shape filled with ones but with different datatype in Numpy
- Return a new array of given shape filled with zeros in Numpy
- Return a new array of given shape filled with ones and also set the desired data-type in Numpy
- Return a new array of given shape and type, filled with array-like in Numpy
- Return a new array of given shape and type filled with a fill value in Numpy
- Return a new array of given shape filled with zeros and also set the desired datatype in Numpy
- Return a new array of given shape filled with zeros and also set the desired output in Numpy
- Return a new array of given shape filled with a fill value and a different output type in Numpy
- Return an array of ones with the same shape and type as a given array in Numpy
- Return a new array of given shape without initializing entries in Numpy
- Return a new array with the same shape and type as given array in Numpy
- Return a new array with the same shape and type as a given array in Numpy
- Return a new array of given shape and type without initializing entries in Numpy
- Return a new array with the same shape as a given array but change the default type in Numpy