Post Reply 
Moving from 200LX SOLVER to SAGEmath *)
01-07-2015, 10:42 AM
Post: #1
Moving from 200LX SOLVER to SAGEmath *)
Dear fellow SOLVER users,

any idea, how to move (solve!) a construct like

Code:
if(S(SvNow)
:inv(1+if(Save1=0:%AgSvTarget:%AgSvNow)/100)
:inv(1+%AgSvNow/100)
)

to (in) SAGEmath?

Best regards

*) http://sagemath.wikispaces.com/if
Visit this user's website Find all posts by this user
Quote this message in a reply
01-11-2015, 12:30 PM (This post was last modified: 01-11-2015 12:32 PM by Peter A. Gebhardt.)
Post: #2
RE: Moving from 200LX SOLVER to SAGEmath *)
Answering myself - Python's identation and variable naming were the stoppers ;-)

Not being allowed to use the % character in variable names, makes developing self-documenting code for financial tasks in SAGEmath a bit harder too.

(print statements added to visualize decision tree)

Code:
var ('S, Save1, _AgSvTarget, _AgSvNow')
_AgSvTarget=5; _AgSvNow=3.0; S=1; Save1=0.0

if S == 1: 
    if Save1 == 0:
        print 1,  1/(1 + _AgSvTarget/100)
    else:
        print 2,  1/(1 + _AgSvNow/100)        
else:    
    print 3,  1/(1 + _AgSvNow/100)

Best regards
Visit this user's website Find all posts by this user
Quote this message in a reply
01-11-2015, 07:11 PM
Post: #3
RE: Moving from 200LX SOLVER to SAGEmath *)
(01-11-2015 12:30 PM)Peter A. Gebhardt Wrote:  Python's indentation and variable naming were the stoppers ;-)

And I was thinking the problem is the S (solving for) function.

Cheers
Thomas
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)