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




-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to