I want to show dotted line between 81 to 85, how can i show it.

 採用された回答

Sam Chak
Sam Chak 2022 年 5 月 12 日
編集済み: Sam Chak 2022 年 5 月 12 日

1 投票

Suggest a simple solution:
t1 = 70:81;
t2 = 81:85;
t3 = 85:100;
plot(t1, t1, 'b', t2, t2, 'b--', t3, t3, 'b')

その他の回答 (1 件)

Vartika Agarwal
Vartika Agarwal 2022 年 5 月 12 日

0 投票

I want to draw marker at particular point
73,77,81,85,89,93,100

3 件のコメント

Sam Chak
Sam Chak 2022 年 5 月 12 日
Alright, can do this way, but you are encouraged to explore how to display the plot.
d = [73, 77, 81, 85, 89, 93, 100];
plot(d, d, 'd')
hold on
t1 = 70:81;
t2 = 81:85;
t3 = 85:100;
plot(t1, t1, 'b', t2, t2, 'b--', t3, t3, 'b')
hold off
Vartika Agarwal
Vartika Agarwal 2022 年 5 月 12 日
Thanks sir for your help
Sam Chak
Sam Chak 2022 年 5 月 12 日
Hi @Vartika Agarwal, don't mention it. Have a nice day!

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

カテゴリ

ヘルプ センター および File ExchangeSpline Postprocessing についてさらに検索

製品

タグ

質問済み:

2022 年 5 月 12 日

コメント済み:

2022 年 5 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by