フィルターのクリア

Plotting circles horizontally through entire range of x values on a constant y value

2 ビュー (過去 30 日間)
How do i plot circles for the entire range of the x values for a constant y value instead of a horizontal line through the range of x values?

採用された回答

Star Strider
Star Strider 2018 年 5 月 2 日
I am not certain what you want.
Try this:
x = rand(10,1);
y = ones(size(x))*0.5;
figure
plot(x, y, 'o')
  7 件のコメント
Lorenne
Lorenne 2018 年 5 月 3 日
This works, thanks!
Star Strider
Star Strider 2018 年 5 月 3 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by