필터 지우기
필터 지우기

Using discretize to reduce the size of a matrix

조회 수: 8 (최근 30일)
Aaron Smith
Aaron Smith 2017년 3월 6일
댓글: Aaron Smith 2017년 3월 6일
I have a large matrix that I need to represent visually. Contourf is perfect for what I need to do but the problem is that for matrices above a certain size, contourf takes an extremely long time work. I was wondering is there a way to half the size of a matrix using the discretize command? Looking at the mathworks page for discretize, the instructions are somewhat confusing and the apparent need to specify edges seems like a possible problem. I was thinking of binning each row in half and each column in half by combining every even numbered data point with the adjacent odd numbered data point. Is this possible with discretize or must each edge be specified?

채택된 답변

KSSV
KSSV 2017년 3월 6일
편집: KSSV 2017년 3월 6일
You donwsample your matrix by some step. Lat A be your matrix.
skip = 2 ; % skip these many number rows and columns, change it accordingly
A_reduced = A(1:skip:end,1:skp:end) ; % matrix reduced, now use contourf

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by