How to plot matrice in a figure ?

5 ビュー (過去 30 日間)
hiba
hiba 2017 年 3 月 20 日
回答済み: Iddo Weiner 2017 年 3 月 20 日
hi I want to display (plot) the following table in a figure how to do it ?

採用された回答

Iddo Weiner
Iddo Weiner 2017 年 3 月 20 日
How do you want to display this data? Here's 1 idea:
pair1 = [0 1];
pair2 = [0.5 0.7];
% ...
pairN = [0.1 1.5];
data = [pair1; pair2; pairN];
bar(data)
legend('observation1','observation2','location','NW')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by