User Portlet User Portlet

Discussions
Hi, In my current work im using a table to produce a set of points in a listplot PointSet[t_]:= Table[{1 /2 (i + j), (j - i)}, {i, -(1/ 2) (t - 1), (t - 1)/2}, {j, -(1/2) (t - 1), (t - 1)/2}] Now i wanted to exclude some points so im using....
Hi. I have a function that generates a nested list containing coordinates, now i want to apply a function to those coordinates. 'CoordinatesGeneration = Function[ {m, n, a, b}, Table[Table[{a /2 (i + j), a (j - i), b /2 (k + h), b (k -...
Hi, i need to generate a Table for any k odd. I really don't know how to explain it, so i put 2 examples of what i need. Its like making a pyramid by eliminating ones in each row. k = 5; {{1, 1, 1, 1, 1}, {0, 1, 1, 1, 0}, {0, 0, 1, 0,...