MATLAB: Storing of values in matlab

MATLABomg_i_just_found_the_matlab_documentation

lamda=1 N=6% alpha=60 alpha=deg2rad(alpha); d=0.5 Beta=(2*pi/lamda); theta= 0:0.012:2*pi; w=alpha+Beta*d.*cos(theta); AF=1/N*(sin(N*(w./2))./sin(w./2));
figure polar(theta,AF)
***************** I need the values of theta at different values of AF after plotting.

Best Answer

change
polar(theta,AF)
to
h=polar(theta,AF)
After that code get the data like this
x=get(h,'Xdata')
y=get(h,'Ydata')
you can plot the data again but without the grid
plot(x,y)