| Author |
Comment/Response |
Bill Simpson
|
10/17/12 7:36pm
Plot only plots Real functions.
Just plot the Real part
In[1]:= Plot[Re[Exp[I*x]],{x,-6,6}]
Out[1]= <plot snipped>
Overlay plots of the Real and Imaginary parts
In[2]:= Plot[{Re[Exp[I*x]],Im[Exp[I*x]]},{x,-6,6}]
Out[2]= <plot snipped>
Likewise for your next plot
In[3]:= Plot[{Re[Cos[x]+I*Sin[x]],Im[Cos[x]+I*Sin[x]]},{x,-6,6}]
Out[3]= <plot snipped>
URL: , |
|