| 1 | initial version |
Would simply a Python function with substitution do the job?
def H(p):
return p(10,20)
| 2 | No.2 Revision |
Would simply a Python function with substitution This seems to do the job?job:
def H(p):
return p(10,20)
H = R.hom([K(10),K(20)])
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.