Question: restricting plot3d to integers

I'm trying to eventually make some 3d plots of some finite fields and different operations on them. Unfortunately I need some way to restrict the input to integers since apparently floor-ing them isnt enough. Heres parts of my worksheet, if it helps: G := GF(2, 8, x^8+x^4+x^3+x+1) `&*` := proc () options operator, arrow; G:-output(G:-`*`(map(G:-input, [args])[])) end proc f[1] := proc (a, b) options operator, arrow; `&*`(floor(a), floor(b)) end proc > plot3d(f[1](a, b), a = 0 .. 255, b = 0 .. 255); %; Error, (in input) invalid input: `convert/base` expects its 1st argument, n, to be of type {integer, list(integer)}, but received floor(a) Thanks
Please Wait...