Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
RAHIBA
RAHIBA le 7 Mar 2015
Commenté : Star Strider le 11 Mar 2015
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

Réponse acceptée

Star Strider
Star Strider le 7 Mar 2015
The inpolygon function would be my first approach to do what you want. You would have to iterate over all your cells.
  2 commentaires
RAHIBA
RAHIBA le 11 Mar 2015
Thank you very much sir. I have very useful this function.
Star Strider
Star Strider le 11 Mar 2015
My pleasure!

Connectez-vous pour commenter.

Plus de réponses (1)

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

Community Treasure Hunt

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

Start Hunting!

Translated by