File tree Expand file tree Collapse file tree 1 file changed +1
-27
lines changed Expand file tree Collapse file tree 1 file changed +1
-27
lines changed Original file line number Diff line number Diff line change 32273227 """ ))
32283228
32293229
3230- add_newdoc ('numpy.core.multiarray' , 'ndarray' , ('dot' ,
3231- """
3232- a.dot(b, out=None)
3233-
3234- Dot product of two arrays.
3235-
3236- Refer to `numpy.dot` for full documentation.
3237-
3238- See Also
3239- --------
3240- numpy.dot : equivalent function
3241-
3242- Examples
3243- --------
3244- >>> a = np.eye(2)
3245- >>> b = np.ones((2, 2)) * 2
3246- >>> a.dot(b)
3247- array([[2., 2.],
3248- [2., 2.]])
3249-
3250- This array method can be conveniently chained:
3251-
3252- >>> a.dot(b).dot(b)
3253- array([[8., 8.],
3254- [8., 8.]])
3255-
3256- """ ))
3230+ add_newdoc ('numpy.core.multiarray' , 'ndarray' , ('dot' ))
32573231
32583232
32593233add_newdoc ('numpy.core.multiarray' , 'ndarray' , ('dump' ,
You can’t perform that action at this time.
0 commit comments