gridbin

版本 1.0.0 (532.6 KB) 作者: Chad Greene
A MATLAB function for gridding large datasets of scattered data.
120.0 次下载
更新时间 2021/12/26

View gridbin on File Exchange

gridbin

A fast MATLAB function for gridding very large datasets of scattered data. This function is somewhat similar to Matlab's built-in griddata or John D'Errico's gridfit, with the differences being that

  1. gridbin returns the mean value of all scattered data points within every cell of a grid rather than interpolating or fitting a surface.
  2. gridbin is much faster than griddata or gridfit.
  3. gridbin can handle much larger scattered datasets than griddata or gridfit.
  4. gridbin can return statistics. For example, gridbin can return the standard deviation of all scattered data points within a grid cell simply by adding @std to the function call.

Syntax

 vq = gridbin(x,y,v,xq,yq) 
 vq = gridbin(...,@func) 
 [vq,N] = gridbin(...) 

Description

vq = gridbin(x,y,v,xq,yq) produces a 2D grid of values vq at the coordinates xq,yq. Inputs x,y,v may be scattered data, and the output vq is the mean of all scattered values v within each spatial bin.

vq = gridbin(...,@func) applies any function @func to the v data. By default, @func is @mean, meaning that vq contains the mean of all values v within each spatial bin.

[vq,N] = gridbin(...) also returns a grid N containing the number of observations v in each bin.

引用格式

Chad Greene (2024). gridbin (https://github.com/chadagreene/gridbin), GitHub. 检索来源 .

MATLAB 版本兼容性
创建方式 R2021a
兼容任何版本
平台兼容性
Windows macOS Linux
致谢

参考作品: Surface Fitting using gridfit

Community Treasure Hunt

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

Start Hunting!

无法下载基于 GitHub 默认分支的版本

版本 已发布 发行说明
1.0.0

要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库
要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库