MATLAB: How can i plot circular orbit of satellite using app designer

app designerMATLABorbitssatellite

actually i dont even know how to start

Best Answer

Why you want to use an app?
th = linspace(0,2*pi) ;
R = 1. ;
x = R*cos(th) ;
y = R*sin(th) ;
plot(x,y) ;