필터 지우기
필터 지우기

Counting using Statistics tools

조회 수: 2 (최근 30일)
Afua Amoako Dadey
Afua Amoako Dadey 2020년 7월 11일
답변: Adam Danz 2020년 7월 11일
Hello dear people please can anyone help me write a code to count these points in each quarter of the graph attached

채택된 답변

Adam Danz
Adam Danz 2020년 7월 11일
Presumably you already have the (x,y) coordinates if you've plotted the data.
You just need to use indexing (the main superpower of Matlab) to determine which points are in which quadrants.
For example,
centerPoint_x = min(xlim) + range(xlim)/2;
centerPoint_y = % Same thing as above but with ylim
quad1 = x >= centerPoint_x & y >= centerPoint_y;
quad2 = x < centerPOint_x & y >= centerPoint_y;
quad3 = % fill in....
quad4 = % file in....
% Points that are in Quad1 are
x(quad1), y(quad1)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by