Why is the following code not plotting the set of points from {1,1} to {10,10} ?
For[i = 1, i <= 10, i++, Graphics[Point[{i, i}]]]
|
If you want to see the output of your command, modify it a little:
You will see ten graphics, one point in each one |
|||||||||||||
|