필터 지우기
필터 지우기

Breaking coordinate system into sections and finding the mean of each secction

조회 수: 2 (최근 30일)
I have a matrix of (X,Y,Q) values. X is the x coordinate, Y is the y coordinate, and Q is the value at that point. There are thousands of data points for a given 100mm by 100mm area of X and Y. I need to write a code where I can break the coordinate system into a certain unknown number of equal size sections and take the mean of all Q values that fall in each section.
For example, take the mean of all Q values that fall within x = {0,5} and Y = {0,5}.

답변 (1개)

Shadaab Siddiqie
Shadaab Siddiqie 2021년 2월 22일
From my understanding you want to split the matrix into equal size sections (i am assuming they are continuous) and find the mean of each section. Here is an basic idea to do that :
To select random number of sections :
  • Select random no of random rows.
  • Select random no of random columns.
  • Then split the matrix with these rows and column
To get the mean:
  • Create cumulative matrix using
CM = cumsum(Matrix,2);
  • Get sum of submatrix (section) from the cumulative sum to improve the performance

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by