Not Logged in. Login Register

General Discussion Board \ Calculator Programming \ Ti-92 Matrix recall help

Click here to log in (you must be logged in to post comments).

AuthorComment
Snakeshit
Probe
Posted: 2 Apr 2009
17:22 GMT
Total Posts: 1
how can I get this to work, is it even possible? also need to know how the round command works. I want to use it to make a variable work for matricies.
exp:
f = 4.4

dialog
title "Full Load Current"
dropdown "voltage",{"115","208"},a
dropdown "horsepower",{"1/6","1/4","1/2"},b
enddlog
expr(a )->a
expr(b )->b
sp[a,b]->f
dialog
title "Answer"
text "FLC is "&string(f )
enddlog
f*1.25->f
sp[f,b]->w
dialog
title "Wire Size"
text "Min. Wire Size is"
text " "&string(f)
enddlog