It lives! Or at least is not undead

2 Aug
2014
2 Aug
'14
1:14 p.m.
charris@localhost [matmul (master)]$ python3.5 Python 3.5.0a0 (default:4425024f2e01, Aug 2 2014, 10:10:31) [GCC 4.8.3 20140624 (Red Hat 4.8.3-1)] on linux Type "help", "copyright", "credits" or "license" for more information.
import numpy as np import testing a = np.ones(3).view(testing.marray) a@3
marray([ 3., 3., 3.])
3@a
marray([ 3., 3., 3.])
a@np.eye(3)
marray([ 1., 1., 1.])
np.eye(3)@a
marray([ 1., 1., 1.])
This was just for quick experimentation.
Chuck
3162
Age (days ago)
3162
Last active (days ago)
0 comments
1 participants
participants (1)
-
Charles R Harris