Filter löschen
Filter löschen

binning the x-axis of a plot

1 Ansicht (letzte 30 Tage)
jgillis16
jgillis16 am 9 Feb. 2016
Kommentiert: Walter Roberson am 9 Feb. 2016
I need to create bins for the x-axis of my plot. The axis goes from 0 to 20, and I need to make bins corresponding to every .10 of a value; i.e. 5.0 to 5.10. How would I go about doing this?

Antworten (1)

Walter Roberson
Walter Roberson am 9 Feb. 2016
xbins = 0 : 0.10 : 20;
  4 Kommentare
jgillis16
jgillis16 am 9 Feb. 2016
I want the x-axis to be binned. So instead of going from 0 to 20, it should go from 0, 0.10, 0.20, etc. Would that be possible? The only thing that's worrying is the matrix sizes are not consistent.
Or, a second axis could work too
Walter Roberson
Walter Roberson am 9 Feb. 2016
xbins = 0 : 0.10 : 20;
plot(r,txx2);
set(gca, 'xtick', xbins)
But what I suspect you want is something closer to
bar(r, txx2)

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by