Preventing all [x,y] figures appearing when running a plot of a circle

When plotting a circle using x=rcos(theta) and y=rsin(theta), I create a linspace to obtain many values for x and y and then plot [x,y]. However, whenever I run the function, all these values appear. How do I prevent this from happening? This is what top line looks like:
function [x,y] = disc_plot
Thank you

回答 (2 件)

Youssef  Khmou
Youssef Khmou 2015 年 3 月 30 日

0 投票

Adding semi column (;) for all instructions inside the function will prevent the printing of values.
Star Strider
Star Strider 2015 年 3 月 30 日

0 投票

I have no idea what you’re doing.
The correct syntax is:
r = 1;
theta = linspace(0, 2*pi);
x = r*cos(theta);
y = r*sin(theta);
plot(x,y)
grid % Optional
axis equal

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

質問済み:

2015 年 3 月 30 日

回答済み:

2015 年 3 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by