Re: Ploting 2 Lists
- To: mathgroup at smc.vnet.net
- Subject: [mg16302] Re: [mg16226] Ploting 2 Lists
- From: Sergio Terrazas <sterraza at campus.cdj.itesm.mx>
- Date: Sun, 7 Mar 1999 01:05:35 -0500
- Sender: owner-wri-mathgroup at wolfram.com
Hi Jorge!
Try this:
x={3,6,8}
y={4,1,6}
Make a single list
lista={x,y}
Out= {{3,6,8},{4,1,6}}
lista2=Transpose[lista]
Out={{3,4},{6,1},{8,6}}
ListPlot[lista2]
Saludos,
Sergio Terrazas
Juarez, Mexico
At 12:40 AM 3/5/99 -0500, you wrote:
>How can I plot the following lists;
>
>xvalues = {3,6,8}
>yvalues = {4,1,6}
>
>i.e. the points;
>
>{3,4},{6,1},{8,6}
>
>Thank you for any help,
>
> Jorge
>
>
>
>