Re: Graphing with Mmm2.0
- To: mathgroup at smc.vnet.net
 - Subject: [mg6151] Re: [mg6138] Graphing with Mmm2.0
 - From: Jeff Copes <jcopes at winnie.fit.edu>
 - Date: Mon, 24 Feb 1997 00:08:55 -0500
 - Sender: owner-wri-mathgroup at wolfram.com
 
Try this (I didn't test this, but if I remember right, it works):
	Plot[
	   Evaluate[
	      Table[ 1/(a - x), {a,0,5}]
	           ], {x,6,10}]
You have to watch for division by 0, so watch how you vary your a's and
x's. This will give you a family of curves related to the function
1/(x-a). If you want a table of differnt plots, try this:
	Table[
	   Plot[1/(x-a), {x,6,10}],
	      {a,0,5}]
This should work. 
Good luck.
Jeff Copes
On Sun, 23 Feb 1997, John K. Papadakis wrote:
> I want to make a plot of a function. (1/(a-x) ) where a is a constant. I
> want to do it from 0 to a .And i want a to vary..how can i do that?
> I tried Plot[1/(a-x),{x,0,a}] but it didn't work.
> 
> 
> Thanks
> John Papadakis
> 
>