Answer:
transpose(linspace(2,32,11))
Explanation:
<em>To get the equally spaced elements you can use:</em>
<em>linspace</em> is the command for generating a linearly spaced vector.
For instance, the command:
<em>linspace</em>(element1,element2,n)
generates n points, between element1 and element2
The spacing between the points is calculated by

In your case, the <em>linspace</em> command will create a vector with 1 row and 11 columns (1x11).
To get the column vector:
In order to convert this vector into one with 11 rows and 1 column (11x1), you can use:
<em>tanspose</em>(vector)
where vector is <em>linspace</em>(element1,element2,n)