Plotting Matrix Columns with Colorbar

5 views (last 30 days)
T Matthew Evans
T Matthew Evans on 11 Feb 2020
Commented: Walter Roberson on 13 Feb 2020
I have an array that is long in one dimension and short in another, let's say 50 x 5000. Each of the 50 rows is a point in space and each of the 5000 columns is a time. I would like to plot isochrones as so:
X = 50;
T = 5000;
x = 0:X;
t = 0:T;
M = somefun(x,t);
plot(M(:,1234),x);
However, I would like to plot many irregularly- (logarithmically?) spaced columns and would like to color them with increasing time and provide a corresponding colorbar. I can think of several ways to brute-force this, but I suspect that there is a simple way that I am missing.
Any help will be greatly appreciated.
  2 Comments
Walter Roberson
Walter Roberson on 13 Feb 2020
T Matthew Evans commented,
I posted this question under an alias that I do not really use. I have reformulated the question in a somewhat more complete way and re-posted under my preferred alias. I would like very much to delete this question, please. Thank you.
Walter Roberson
Walter Roberson on 13 Feb 2020
T Matthew Evans:
Our policy is that questions that have received a meaningful volunteer attempt at an answer are not deleted or closed, not unless the question is abusive or not permitted by law. This policy is in place to respect the efforts of the volunteers.
You can post a link to the updated question.

Sign in to comment.

Answers (1)

KSSV
KSSV on 11 Feb 2020
Edited: KSSV on 11 Feb 2020
How about this approach?
x = 0:.05:2*pi;
y = sin(x);
z = zeros(size(x));
col = x; % This is the color, vary with x in this case.
surf([x;x],[y;y],[z;z],[col;col],...
'facecol','no',...
'edgecol','interp',...
'linew',5);
colorbar
  3 Comments
KSSV
KSSV on 11 Feb 2020
Give same value for each column and use surf.
Moe Szyslak
Moe Szyslak on 11 Feb 2020
I'm not sure surf will get me what I want -- here's a cartoon of what I am looking for. Does this make sense?
Clipboard01.jpg

Sign in to comment.

Categories

Find more on Colormaps in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!