Plotting Matrix Columns with Colorbar
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
Walter Roberson
2020-2-13
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
2020-2-13
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.
回答(1 个)
KSSV
2020-2-11
编辑:KSSV
2020-2-11
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 个评论
Moe Szyslak
2020-2-11
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?

另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!