필터 지우기
필터 지우기

How to compute number of points in each cell of a scatter plot

조회 수: 3 (최근 30일)
RAHIBA
RAHIBA 2015년 3월 7일
댓글: Star Strider 2015년 3월 11일
Hello, As a part of my project, I want to extract the state space point distribution features from speech signal. I get the scatter plot of reconstructed state space. Then I want to compute number of points in each cell from that scatter plot. Please help me to compute number of points in each cell of that scatter plot.Please assist. Thanks in advance. Rahiba
clear;
clc;
[x,Fs]=wavread('C:\Users\raiba\Desktop\project\database\1\1\3.wav');
Y=get_delay_vector(x,2,1);
plot(Y(:,1),Y(:,2));
set(gca, 'XTick', [-1:0.1:1])
set(gca, 'YTick', [-1:0.1:1])
scatterplot(Y);
set(gca, 'XTick', [-1:0.1:1])
set(gca, 'YTick', [-1:0.1:1])
grid on;
function Z=get_delay_vector(data,embed_dimen,delta)
data_size=size(data);
if data_size(1)<data_size(2)
data=data';
end
data_size=size(data);
Z=zeros(data_size(1),embed_dimen);
for i=1:embed_dimen
Z(:,i)=circshift(data,[-(i-1)*delta,0]);
end
end

채택된 답변

Star Strider
Star Strider 2015년 3월 7일
The inpolygon function would be my first approach to do what you want. You would have to iterate over all your cells.
  댓글 수: 2
RAHIBA
RAHIBA 2015년 3월 11일
Thank you very much sir. I have very useful this function.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2015년 3월 7일
There are some 2D histogram functions you could use: http://www.mathworks.com/searchresults/?c[]=entire_site_en&q=hist2

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by