Filter löschen
Filter löschen

How to plot matrice in a figure ?

1 Ansicht (letzte 30 Tage)
hiba
hiba am 20 Mär. 2017
Beantwortet: Iddo Weiner am 20 Mär. 2017
hi I want to display (plot) the following table in a figure how to do it ?

Akzeptierte Antwort

Iddo Weiner
Iddo Weiner am 20 Mär. 2017
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')

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by