Plot a unit circle using sine and cosine functions in MATLAB | M-file
close all;
clc;
syms t;
t=0:0.001:2*pi;
x=cos(t);
y=sin(t);
plot(x,y);
axis square;
Please follow us:
https://www.facebook.com/matlabcodes
Join us on Telegram:
https://t.me/matlabirawen
Join us on Facebook Group:
https://www.facebook.com/groups/matlabcodes
No comments