Saturday 30 April 2011

Program to draw a circle in MATLAB

Related posts:

Program to add two continuous signals in MATLAB

Program for convolution of continuous sequences in MATLAB


_____________________________________________________________________________________________________

Program to draw a circle in MATLAB:

r=2;
 t=0:pi/24:2*pi;
x=r*cos(t);
y=r*sin(t);
 plot(x,y,x,y,'*')
 grid on

4 comments:

  1. i want to need matlab based project for final year

    ReplyDelete
  2. try making a autonomous robot through MATLAB coding......best project what i prefer!!!!!

    ReplyDelete
  3. Above program is successful by removing Asterik symbol

    ReplyDelete
  4. Thanks venkatesh for the correction!!

    ReplyDelete