Adding a plot line (trend) to a group of bars
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have generated the following groups of bars in Matlab (v.2015b).
Now for each group of bars I want to plot a line, that represents some more information about each group. For example, a single group (D1 for example) must look like this:
0 Kommentare
Antworten (1)
KSSV
am 28 Sep. 2017
A = randn(1000,1);
h = hist(A) ;
bar(h)
hold on
plot(1:length(h),h,'r')
2 Kommentare
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!