MCPcopy Create free account
hub / github.com/Kitware/VTK / all

Function all

Wrapping/Python/vtkmodules/numpy_interface/internal_algorithms.py:177–182  ·  view source on GitHub ↗

Returns the min value of an array of scalars/vectors/tensors.

(narray, axis=None)

Source from the content-addressed store, hash-verified

175 return numpy.abs(narray)
176
177def all (narray, axis=None):
178 "Returns the min value of an array of scalars/vectors/tensors."
179 if narray is dsa.NoneArray:
180 return dsa.NoneArray
181 ans = numpy.all(numpy.array(narray), axis)
182 return ans
183
184def area (dataset) :
185 "Returns the surface area of each cell in a mesh."

Callers

nothing calls this directly

Calls 2

arrayMethod · 0.80
allMethod · 0.45

Tested by

no test coverage detected