倾斜轴2D绘图,其中x轴为60度而不是90度

时间:2013-06-29 14:33:14

标签: python matlab matplotlib gnuplot octave

我想在六角形格子中绘制如下的分布。

我想将此数据显示为2D色彩图或条形图。有谁知道如何做到这一点?我熟悉octave,python,gnuplot,excel,matlab。

                 1  1  1  1  1  1  1  1
               2   2  2  2  2  2  2  2  2
            3    3   3  3  3  3  3  3  3   3
              2   2   2  2  2  2  2  2  2
                1   1  1  1  1  1  1  1

1 个答案:

答案 0 :(得分:1)

这是在MATLAB中使用patch的解决方案。

data = cellfun(@(x) textscan(x, '%f')', importdata('data.txt', sprintf('\n')));
rowLen = cellfun(@numel, data);
nPoints = sum(rowLen);

centerCells = arrayfun(@(l,r) [(-l+1:2:l-1)'*sin(pi/3) -r*1.5*ones(l,1)], ...
    rowLen', 1:numel(rowLen), 'UniformOutput', false);
centers = vertcat(centerCells{:});

hx = linspace(0,2*pi,7)'; 
vertices = reshape(...
            bsxfun(@plus, permute(sin([hx pi/2+hx]), [1 3 2]), ...
                          permute(centers, [3 1 2])), 7 * nPoints, 2);
faces = reshape(1:7*nPoints, 7, nPoints)';
colorData = vertcat(data{:});

patch('Vertices', vertices, 'Faces', faces, ...
    'FaceColor', 'flat', 'FaceVertexCData', colorData); 
axis equal

这就产生了 enter image description here

如果您需要更改配色方案,请阅读documentation