xbinavg(x, y, xedge, medopt)
Versión 1.1.0.0 (1,27 KB) por
Ryosuke F Takeuchi
export mean y-value via x-value bin
Simple function for summarizing a large number of 2d-data.
Calculating mean and standard deviation of y-datas within each bin of x-data.
Example code:
--
x = rand(1,1280)*100;
y = x.^2 + 5000*randn(size(x));
[meanv, stdv, xv, nv] = xbinavg(x, y, 0:10:100, true);
scatter(x,y, [], [.8 .8 .8], '.');
hold on;
errorbar(xv,meanv,stdv, 'k','LineWidth', 5/2)
---
Citar como
Ryosuke F Takeuchi (2024). xbinavg(x, y, xedge, medopt) (https://www.mathworks.com/matlabcentral/fileexchange/55222-xbinavg-x-y-xedge-medopt), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2015a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- AI and Statistics > Statistics and Machine Learning Toolbox > Descriptive Statistics and Visualization > Statistical Visualization > Box Plots >
Más información sobre Box Plots en Help Center y MATLAB Answers.
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.