MathGroup Archive 1999

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Ploting 2 Lists

  • To: mathgroup at smc.vnet.net
  • Subject: [mg16342] Re: Ploting 2 Lists
  • From: phbrf at t-online.de (Peter Breitfeld)
  • Date: Sun, 7 Mar 1999 01:05:56 -0500
  • Organization: das ist ein breites Feld ...
  • References: <7bns76$dgm@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Jorge Zickermann <jzickermann at mail.EUnet.pt> schrieb:
> 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,

you can construct the list of points like this:

In[1]=  pvalues=Transpose[{xvalues,yvalues}]
Out[1]= {{3,4},{6,1},{8,6}}


es gruesst
      Peter
-- 
=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=
  Peter Breitfeld, Saulgau, Germany       (PGP public key: 08548045)


  • Prev by Date: Re: Multiply a constant to a matrix column
  • Next by Date: Re: Interfacing C++ code to Mathematica
  • Previous by thread: Re: Ploting 2 Lists
  • Next by thread: Re: Ploting 2 Lists