Returns the min value of an array of scalars/vectors/tensors.
(narray, axis=None)
| 175 | return numpy.abs(narray) |
| 176 | |
| 177 | def 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 | |
| 184 | def area (dataset) : |
| 185 | "Returns the surface area of each cell in a mesh." |