A86: cool graphing stuff?


[Prev][Next][Index][Thread]

A86: cool graphing stuff?




i know this is an assembly list, but i have some stuff i was wondering
if anybody else knew about about graphing stuff.

first, to do plus or minus do {-1,1}(eqn) where 'eqn' is the equation (i
think this is used in various programs so nothing new...)

secondly, to do a piecewise function you do the condition multiplied by
the equation for that piece plus all the others. an example will help:

f(x)=x {x<0}
f(x)=x^2 {x>=0}

to graph you would enter the following as 'y1':
(x<0)(x)+(x>=0)(x^2)

-- 

=====================================
=                                   =
=   Kirk Meyer (mailto:_@ibm.net)   =
= http://www.bigfoot.com/~kirkmeyer =
=                                   =
=   "Set your affection on things   =
=    above, not on things on the    =
=      earth."  Colossians 3:2      =
=                                   =
=====================================


Follow-Ups: