How to plot matrice in a figure ?

5 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by