Function to make a 2D histogram

バージョン 1.3.0.0 (1.4 KB) 作成者: Sisi Ma
Make 2D histogram on pairs of (x,y) data
ダウンロード: 3.1K
更新 2013/3/7

ライセンスの表示

%A Simple function that makes a 2D histgram

% Input: data: two cols, x value; y value
% xrange: range and bins for x value (edges)
% yrange: range and bins for y value (edges)
%Output: Count of a specifice (x,y) bin combination;
% Suggested visualizing tool: I like to use imagesc; bar3 will work fine
% too; have to change axis label though

Example:
data(:,1)=randn(100000,1);
data(:,2)=randn(100000,1);
count=hist2d(data,-1:0.1:1,-1:0.1:1);
imagesc(count);

引用

Sisi Ma (2025). Function to make a 2D histogram (https://www.mathworks.com/matlabcentral/fileexchange/29709-function-to-make-a-2d-histogram), MATLAB Central File Exchange. に取得済み.

MATLAB リリースの互換性
作成: R2008a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersHistograms についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.3.0.0

bug fixed

1.0.0.0