C is a 2 by 360 matrix that forms outline of a unit circle. C = [v1|v2|v3... v360] where v1 is e rotated by 1◦, v2 is e rotated by 2◦ etc. R is a given rotation matrix. e is a column vector [1 0]
I initialized the matrix by
>> C=zeros(2,360);
I don't know how use the for loop to populate the entries of matrix C
>> for c = 1:360
C = (R^c)*e;
end
And then the following is supposed to plot the circle.
>> plot(C(1,:), C(2,:))