Set a Python function to be used when pretty printing arrays.
Parameters: | f : Python function
repr : int
|
---|
Examples
>>> def pprint(arr):
... return 'HA! - What are you going to do now?'
...
>>> np.set_string_function(pprint)
>>> a = np.arange(10)
>>> a
HA! - What are you going to do now?
>>> print a
[0 1 2 3 4 5 6 7 8 9]