Sunday, September 22, 2024
Google search engine
HomeLanguagesnumpy.isscalar() in Python

numpy.isscalar() in Python

numpy.isscalar(num) : This is a logical function that returns true if the type of input num is scalar.

Parameters :

num : Input argument of any type and shape.

Return :

True, if input is scalar; else False

Code 1 : Working




# Python program explaining
# isscalar() function
import numpy as np
  
in_array = [1, 3, 5, 4]
print ("Input array : ", in_array)
  
isscalar_values = np.isscalar(in_array)
print ("\nIs scalar : ", isscalar_values)
  
# input
print ("\nisscalar(7) : ", np.isscalar(7))
  
# list input 
print ("\nisscalar([7]) : ", np.isscalar([7]))


Output :

Input array :  [1, 3, 5, 4]

Is scalar :  False

isscalar(7) :  True

isscalar([7]) :  False

References :
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.isscalar.html
.

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments