PColor: Why doesn't it work for non-evenly distributed x-vectors?

I have an unevenly distributed x (time) and y vector and a matrix C with size(x,y). When I plot it with pcolor, the plot looks all weird but the y-axis looks fine. Why can it cope with non-evenly distributed y values but not with non-evenly distributed x values? What can I do to solve this?
best regards, Bernadette

1 件のコメント

Paul
Paul 2014 年 5 月 1 日
I think this is a problem with pcolor and a time axis rather than unevenly distributed data. I have an evenly distributed matrix of ocean velocity as a function of time (x axis) and depth (y axis). If I use pcolor(time,depth,velocity) the result is similar to yours - the first half of the plot is missing. If I create an artificial x variable (x=1:length(time)) and use pcolor(x,depth,velocity) the plot looks fine.

サインインしてコメントする。

回答 (3 件)

Kelly Kearney
Kelly Kearney 2014 年 5 月 1 日

1 投票

That's the opengl renderer acting up... quick fix:
set(gcf, 'renderer', 'zbuffer');
More complicated fix:
Bernadette
Bernadette 2014 年 1 月 6 日

0 投票

No, unfortunately this doesn't make it better. By writing "axis equal" the plot is somehow shrinked to a small vertical line. But maybe I was not clear enough:
so my code looks like this: pcolor(time,GF,GF_500');
where time is a non-evenly distribted vector GF as well and GF_500 is a matrix with size(GF,time)
unfortunately the graph then looks like this?!

カテゴリ

ヘルプ センター および File ExchangeGraphics Performance についてさらに検索

製品

タグ

質問済み:

2014 年 1 月 6 日

回答済み:

2014 年 5 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by