Can you edit a pcolor plot after generating one?

조회 수: 5 (최근 30일)
Marcus Rosales
Marcus Rosales 2020년 2월 23일
댓글: Marcus Rosales 2020년 2월 25일
Hopefully an easy question here. I am using pcolor's interpolation option to give me a map of a fourier transform (FT) of an NxN matrix of values.
N is chosen to be even, so interpolation fills in the coordinates in the dead center of the plot with the surrounding points (so for N=2 the center of the plot would be an interpolation between the 4 inputs of the matrix). I want to subtract out the center since this will be very high in magnitude, but I do not have this explicit value before hand.
Is there a way to apply a high pass filter to a FT before plotting it, or can I obtain a set of data points from pcolor which allows me to get rid of the central bit. Any other suggestion would work too!
If you'd like a plot, let me know too. I think the issue should be reasonably clear here though. Thanks!
  댓글 수: 6
Marcus Rosales
Marcus Rosales 2020년 2월 23일
The .fig keeps crashing the website.... Think there is a bug in my Matlab somewhere. It was hard to center this since the zoom in tool was of setting itself by about 3 inches from where I wanted it too.
dpb
dpb 2020년 2월 23일
Don't attach a .fig; use "SaveAs" and (say) pick .jpg and attach the resulting image file.
We really can't do much seriously w/o at least the code to look at of what you've done and if you have expectations of real feedback, attach the .mat file with the data so somebody can do something with it other than just look.
Did you do as suggested and remove mean from the input before FT?

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2020년 2월 23일
conv2() your 2d matrix with ones(2,2)/4 and use the option 'valid' on the call. Now access the center element of that matrix and subtract it from the matrix. Now imagesc() the resulting matrix.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by