Currently, I'm plotting a single discrete function f known on a discrete set t using the following code:
t := Vector(3, [0.1, 0.2, 0.3])
f := Vector(3, [1, 2, 3])
DiscretePlot(t, f)
Now, suppose I've got a second function g known at the same set t. How can I plot f and g in the same plot?
Here are a few different ways to accomplish that.