好的,所以这开始变得非常令人沮丧。
我有以下代码:(scannedResponse,thetaAxis此处给出)。
clear all
load scannedResponse
load thetaAxis
figure(1); clf(1);
pcolor(1:size(scannedResponse,2), thetaAxis, scannedResponse); shading interp;
figure(2); clf(2);
imagesc(1:s.N.Lsnaps, (thetaAxis), scannedResponse);
所以我得到了两张照片。一个用pcolor制作,一个用imagesc制作。 pcolor图像是正确的,因为y轴是正确的,并且线条是它们应该在的位置。 imagesc是错误的,因为y轴是错误的,并且线不是它们应该的位置。
如您所见,imagesc图像的线条与pcolor图像的线条不一致。我似乎无法使图像y轴与pcolor y轴一致,因此给出了类似的图。我该怎么做呢?
P.S。我已经尝试了使用set(gca,'Ydir', 'normal')
命令等翻转图像的y轴的全部色域无效。
感谢。
答案 0 :(得分:9)
问题是thetaAxis包含非等间距值。 pcolor
可以解决这个问题,imagesc
不能。一种解决方案是插入数据以使它们在等间距的网格上:
% determine interpolation grid: from min to max in equal steps
intpoints = linspace(min(thetaAxis), max(thetaAxis), numel(thetaAxis));
% interpolate the data to fit the new "axis"
int = interp1(thetaAxis', scannedResponse, intpoints);
% plot the interpolated data using the new "axis"
imagesc(1:size(scannedResponse,2), intpoints, int)
% revert the direction of the y axis
axis xy
除了pcolor显示的隐式平滑之外,此图看起来与使用pcolor(1:size(scannedResponse,2), thetaAxis, scannedResponse); shading interp
的图相同。