plotting 2 models on one histogram

4 visualizaciones (últimos 30 días)
Jonathan Louie
Jonathan Louie el 7 de Jun. de 2022
Respondida: the cyclist el 7 de Jun. de 2022
How would I do this:
In a different figure, plot the histograms of x_ar and x_nr on the same graph for the entire time series of the simulations. Normalize the representation of both histograms with the option ‘probability’. To facilitate the comparison of these two histograms use the same bin edges for each of them. We recommend using bins of 15 molecules ranging from 0 to 350 molecules. Add appropriate labels and a legend to your figure.

Respuestas (1)

the cyclist
the cyclist el 7 de Jun. de 2022
Here is a hint to get you started.
N = 1000;
x1 = randn(N,1);
x2 = randn(N,1) + 2;
figure
hold on
histogram(x1)
histogram(x2)
Everything else you need to do is described in the histogram documentation, I believe.

Categorías

Más información sobre Histograms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by