photo

ytu1990


Last seen: presque 4 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

MATLAB Answers

1 Question
1 Réponse

RANG
36 251
of 301 454

RÉPUTATION
1

CONTRIBUTIONS
1 Question
1 Réponse

ACCEPTATION DE VOS RÉPONSES
100.0%

VOTES REÇUS
1

RANG
 of 21 287

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 174 632

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

Question


'histcounts2(y,x,Xedges,Yedges)' rather than 'histcounts2(x,y,Xedges,Yedges)' gives me the correct result, why?
I have a 2-column x-y dataset, and want to obtain a density map, thus hitscounts2 is useful to count the number of point in the ...

plus de 4 ans il y a | 1 réponse | 1

1

réponse

Réponse apportée
Extract data from surface (4x1) to 2D matrix
[X,Y]=meshgrid(min(x):1:max(x),min(y):1:max(y)); 1 is the interval to create the grid Z=griddata(x,y,z,X,Y); D=griddata(x,y,Da...

plus de 4 ans il y a | 0