Como obtenho barras com a função bar3 e larguras diferentes para cada barra?

Eu tenho o código:

values = [1.0 0.6 0.1;  0.0 1.0 0.3;  0.9 0.4 1.0];
h = bar3(values);
shading interp
for i = 1:length(h)
    % Get the ZData matrix of the current group
    zdata = get(h(i),'Zdata');
    set(h(i),'Cdata',zdata)
end
set(h,'EdgeColor','k')
view(-61, 68);
colormap cool
colorbar

E é assim que a figura se parece:

Desejo obter larguras diferentes para cada barra, dependendo da altura da barra.

O que eu quero parece uma imagem emhttp://www.sdtools.com/help/ii_mac.html.

blah http://www.sdtools.com/help/mac.gif

questionAnswers(2)

yourAnswerToTheQuestion