How can I re-code a function into a method?

asked 2011-11-16 18:57:28 +0200

rtrwalker gravatar image

I have the following simple function 'add4' stored in a file 'foo.sage':

def add4(x):
    """Adds 4 to x"""
    return x + 4

I can use this in sage by:

sage: attach 'foo.sage'
sage: add4?
Type:       function
Base Class: <type 'function'>
String Form:    <function add4 at 0x4f332a8>
Namespace:  Interactive
File:       Dynamically generated function. No source code available.
Definition: add4(x)
Docstring:
    Adds 4 to x


sage: var('x')
x
sage: add4(x)
x + 4

How can I change my function to a method so that I can call it using the x.add4() syntax? I still want the method to reside in an external file.

edit retag flag offensive close merge delete

Comments

Methods are "subfunctions" of objects, though. What object in particular do you want to attach your function to?

DSM gravatar imageDSM ( 2011-11-16 19:02:08 +0200 )edit

Is it possible to 'attach' it to SageObject or do I have to be more specific? My example is simple but later i would want to do more complicated actions.

rtrwalker gravatar imagertrwalker ( 2011-11-16 19:22:29 +0200 )edit

No, I don't think you can do that: SageObject isn't that kind of parent. Frankly, without patching Sage, it's hard enough even to get subclassing Expression to behave nicely. (See, e.g., http://groups.google.com/group/sage-support/browse_thread/thread/f749ba3cd079c6f4?pli=1).

DSM gravatar imageDSM ( 2011-11-16 19:35:45 +0200 )edit

Thanks for the link. The material is beyond my current ability so I think I'll just stick to functions.

rtrwalker gravatar imagertrwalker ( 2011-11-16 19:49:44 +0200 )edit
1

Sure. FYI, though, if you *do* have a particular new object you want, then turning a function into a method is trivial (you simply put the function in the class and add a new argument traditionally called "self".) So if you hit any problems along the way, just describe what your goal is and one of the regulars will be happy to help figure out a way to get there. (It could be that a class/method solution is the way to go, but that would require more details.)

DSM gravatar imageDSM ( 2011-11-16 20:01:30 +0200 )edit