How to divide 2D histogram into four quadrants
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have plotted the 2D histogram between x,y.
Now anyone help me to divide the histogram into four equal quadrants.
I have attached the sample 2D histogram. i need to split using horizontal and vertical lines attached to the figure.
Thanks.
2 commentaires
Réponses (1)
KALYAN ACHARJYA
le 6 Avr 2020
Modifié(e) : KALYAN ACHARJYA
le 6 Avr 2020
You can manualy insert the line as required
data=randi(100,[10,10]);
hist(data);
grid on;
hold on;
x_data=1:100;
y_data=repelem(2,length(x_data));
plot(x_data,y_data,'r','linewidth',2);
Voir également
Catégories
En savoir plus sur Histograms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!