adding limits in scatter plot

6 ビュー (過去 30 日間)
Prasad Joshi
Prasad Joshi 2022 年 1 月 18 日
コメント済み: Prasad Joshi 2022 年 1 月 18 日
I am looking to add line for y axis corresponding to 3100 means below that value all are acceptable values ...the code is as follows
clear all
close all
clc
A=xlsread('ABC.xlsx')
X=(A(:,1))
Y=(A(:,2))
scatter(X,Y,'filled','r')
for i=1:6
text(X(i),Y(i),sprintf('(%.0f)',Y(i)))
end
Any input it will be highly helpful....Thank you in advance

採用された回答

Voss
Voss 2022 年 1 月 18 日
line([min(X) max(X)],[3100 3100]);
  1 件のコメント
Prasad Joshi
Prasad Joshi 2022 年 1 月 18 日
Thank you Benjamin

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by