On Mon, 01 Oct 2007, David D Clark apparently wrote:
> y=[array([<f(x0)>]),array([<f(x1)>]),array([<f(x2)>])...]
> and x=array([x0,x1,x2,...])
> I want to plot the family of curves y=f(x).
> plot(x,y[n]) where n is the nth array in y plots the correct curve,
> however plot(x,y) and plot(x,y[:]) complain about mismatched array
> dimensions.
Might you want
plot(x,y.transpose())
hth,
Alan Isaac
|