data from scatterplot
조회 수: 3 (최근 30일)
이전 댓글 표시
for the following code
M = 16; % Alphabet size
x = randint(1000,1,M); % Random message
y = dpskmod(x,M); % Modulate.
scatterplot(y)
gives a 16 point graph but length(y) is 1000.
Is there any way i can make the code give me only those 16 points that are on the graph.
댓글 수: 0
답변 (1개)
Walter Roberson
2011년 4월 16일
We discussed this before: you can use a gridding algorithm, or you can find the centroids of the clusters. There is no way to get that information from the scatterplot itself.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!