I have the following
f[z_] = 1/(z + I)
Table[{f[z]}, {z, -10, 10}]
This produces a list of complex numbers. Is there a way to plot this as a list plot perhaps. I've tried the following but it plots nothing
ListPlot[{Re[data], Im[data]}]
Thanks



datato the table and remove the curly brackets aroundf[z]– Jack LaVigne Aug 30 '17 at 15:44