我有下面的圖像,我想深度軸的範圍如下: (10 9.5 9 8.5 8 7.5 7 6 5 3 2 1 0.9 0.8 0.7 0.6 0.5 0.4 0.3 0.2 0.1 0)來顯示深度1和0之間的數據在規模較大,並且我有以下代碼matlab中一個軸的縮放部分
depths = [10 5 1 0.5 0; 10 5 1 0.5 0] % these are the real depths in meter
contourf(points,depths,RFU15102013_BloomAsMainPoint);
set(gca, 'XTick', points(1) : points(2), 'XTickLabel',{ 'LSB1', 'LSB2'});
ylabel('Depth(m)');
xlabel('Points');
title('Date: 15.10.2013');
這是圖像:
如何做呢?
EDIT1
真實數據:
RFU15102013_BloomAsMainPoint = [ 2.71 1.23 1.30 1.20 14.37 ; 2.51 1.36 1.01 1.24 1.15];
points = [1 1 1 1 1; 2 2 2 2 2 ];
depths = [10 5 1 0.5 0; 10 5 1 0.5 0];
@divanov,你的意思是'contourf'輸入?? – Parid0kht
@divanov,我剛剛添加了您要求的數據。 – Parid0kht
我已經用您提供的數據更新了我的答案。 – divanov