Question: Plot a list

Hi experts, I am producing a List X[n]. After that I just want to plot the values X[n] := [n, P[n]] with n on the x axw and P[n] on the y axe. for i from .1 by .1 to 5 do n := n+1; P[n] := (i*2+3*i^2) X[n] := [n, P[n]] end do; X[1] Unfortunately I get the error message and an empty plot: Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
Please Wait...