Recent content by jhnreid86

  1. J

    Plotting a Quarter Circle in MATLAB

    Homework Statement I am trying to plot simply a quarter of a circle but am having difficulty with it. Homework Equations The Attempt at a Solution So far I have x = 0:0.01:1; for i = 0:length(x) y = sqrt(1 - x(i)^2); plot(x,y,'b-') end...
Back
Top