Plot the circle with centre at (1,2) and radius 3 in red colour.

2 views (last 30 days)
circle plotting

Answers (1)

Image Analyst
Image Analyst on 9 Sep 2018
Try this:
viscircles([1,2], 3, 'Color', 'r')
grid on;
axis equal;

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!