Your equation (x-a).^2+(y-b).^2<=r^2 means that the cylinder's center is at [a, b]. Moving it along the x-axis by an amount da means increasing a to a+da, so that the new center moves to [a+da, b].
Just as a word of advice -- there is also the Matlab command [x,y,z] = cylinder. Type help cylinder for more info.
And for completeness and rigor -- your equation is not that of a cylinder, it is the equation of a plane (z=0) with a solid circular protrusion of height 1 and radius 1/33 centered at [a,b]. A "solid cylinder" like the one you've defined is best referred to as a "rod", whereas a mathematical "cylinder" is only the outer surface ("the collection of all points equidistant to a line segment"). Very often cylinders are defined through a set of parametric equations, so what are your reasons for this particular style of defining the rod?