MathGroup Archive 2001

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

Search the Archive

Re: Plotting complex points

  • To: mathgroup at smc.vnet.net
  • Subject: [mg26644] Re: [mg26609] Plotting complex points
  • From: BobHanlon at aol.com
  • Date: Sat, 13 Jan 2001 22:36:19 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

data = Table[5*(Random[] - 0.5) + 5*I*(Random[] - 0.5), {25}]; 

ListPlot[({Re[#], Im[#]} & ) /@ data, 
    PlotStyle -> {AbsolutePointSize[3], RGBColor[1, 0, 0]}, 
    AxesLabel -> {"Re", "Im"}]; 

Bob Hanlon

In a message dated 2001/1/11 11:30:03 AM, mitchell at kaplan2.com writes:

>Can anyone tell me if there is a way I can plot a bunch of complex points
>on a complex plane.  I know I can break them up into an x,f(x) pair (x=x,
>and f(x)=iy), but I was wondering if I could get a complex plane out of
>Mathematica.
>


  • Prev by Date: Calling Mathematica-4.0 from C Code.
  • Next by Date: Re: Equation
  • Previous by thread: Plotting complex points
  • Next by thread: Re: Random Sampling Without Replacement