フィルターのクリア

How to make standard semilogy plot more informative

2 ビュー (過去 30 日間)
Atinesh Singh
Atinesh Singh 2016 年 11 月 16 日
回答済み: Steven Lord 2016 年 11 月 16 日
Suppose, I'm plotting two datasets of two different algorithms using semilogy like this
eps1 = 1:50;
eps2 = 1:50;
eps2 = eps2 *1/10;
semilogy(eps1, '-o');
hold
semilogy(eps2, '-o');
Suppose dataset eps1 belongs to algorithm 1 and eps2 belongs to algorithm 2. How can I make annotation about them in the plot and make the plot more stylish

採用された回答

Steven Lord
Steven Lord 2016 年 11 月 16 日
Add a legend?
Create a text annotation?
Use some of the other tools described on the pages in the "Formatting and Annotation" section of the documentation?
If you describe in a little more detail the desired appearance of your plot we may be able to offer more specific suggestions.

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by