Plotting data on a 2d plane with colorbar

35 ビュー (過去 30 日間)
Luffy
Luffy 2015 年 10 月 15 日
コメント済み: Martin Schätz 2015 年 10 月 15 日
I have 3 vectors of size 1:100 each(say X,Y,Z).I want to plot it on a 2d plane with colorbar indicating depth. I've tried with pcolor but it requires a matrix.
pcolor(X',Y',Z');
colorbar
Is this even correct way of doing it ?

回答 (2 件)

Lessmann
Lessmann 2015 年 10 月 15 日
Hi,
an easy way of doing this is the scatter plot. Use it like this
scatter(x,y,[],z,'filled')

Martin Schätz
Martin Schätz 2015 年 10 月 15 日
Hey, in pcolor the X and Y means predefined grid (like from meshgrid ), and Z are actual data. So then X Y and Z has to be matrixes. If you have 1D X and Y and 2D Z then you can use meshgrid to generate 2D X and Y and use pcolor . If you had 1D Z, or all of your X Y Z are actual depth data, then you will have to display them as 1D data, or expand them to actual 2D array, create grid for them and use pcolor to display them. (And display colorbar as u did write in your answer.) Also check examples for pcolor they might help you to understad how this function works.
  2 件のコメント
Luffy
Luffy 2015 年 10 月 15 日
編集済み: Luffy 2015 年 10 月 15 日
My data for example would be like this,
X = 750:5:1250;
Y = -50:50;
Z = -0.05:0.001:0.05
%all X,Y & Z are independent.
%Can i do
pcolor([X';Y';Z']) ?
Martin Schätz
Martin Schätz 2015 年 10 月 15 日
You can just change the last line to this: pcolor([X;Y;Z]). But i dont think that this is what you wanted... Check it out in MatLab.

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

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by