ehrenfest Messages 2,001 Reaction score 1 Thread starter Feb 16, 2008 #1 If I have a function from [0,1] to the complex plane, is there a way that I can plot it with Mathematica 6.0?
If I have a function from [0,1] to the complex plane, is there a way that I can plot it with Mathematica 6.0?
rohanprabhu Messages 410 Reaction score 2 Feb 24, 2008 #2 use something like: Code: ParametricPlot[{Re[f[x]], Im[f[x]]}, {x, x_i, x_f}] this will plot the imaginary part of f[x] on the y-axis and the real part of f[x] on the x-axis, much like a complex plane. Refer: Re[]: http://reference.wolfram.com/mathematica/ref/Re.html Im[]: http://reference.wolfram.com/mathematica/ref/Im.html ParametricPlot[]: http://reference.wolfram.com/mathematica/ref/ParametricPlot.html
use something like: Code: ParametricPlot[{Re[f[x]], Im[f[x]]}, {x, x_i, x_f}] this will plot the imaginary part of f[x] on the y-axis and the real part of f[x] on the x-axis, much like a complex plane. Refer: Re[]: http://reference.wolfram.com/mathematica/ref/Re.html Im[]: http://reference.wolfram.com/mathematica/ref/Im.html ParametricPlot[]: http://reference.wolfram.com/mathematica/ref/ParametricPlot.html