- Notifications
You must be signed in to change notification settings - Fork15
Closed
Description
have examples like
A=gb.Matrix.from_coo([0,0,1,1,2], [1,2,0,2,1], [2.0,5.0,1.5,4.0,0.5])B=gb.Matrix.from_coo([0,0,1,1,2,2], [1,2,0,1,1,2], [3.,-2.,0.,6.,3.,1.])# These are equivalentC<<A.ewise_mult(B,op='min')# method styleC<<gb.binary.min(A&B)# functional style
but when I try and do either of these I get'C' is not defined which is what I expected from prior documentation. Would recommend making thesedoctests so that the docs don't include erroneous examples
part of:pyOpenSci/software-submission#81