plotting 2 models on one histogram
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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.
0 comentarios
Respuestas (1)
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)
0 comentarios
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!