Matlab中的二维线渐变颜色

时间:2017-02-11 10:43:17

标签: matlab graph colors gradient matlab-figure

是否可以在Matlab中为二维线添加渐变颜色,特别是当您有少量数据点(小于10?)时,结果将类似于下图中的一个?

enter image description here

2 个答案:

答案 0 :(得分:2)

如果您使用MATLAB R2014b或更新版本,这并不难。

n = 100;
x = linspace(-10,10,n); y = x.^2;
p = plot(x,y,'r', 'LineWidth',5);

% modified jet-colormap
cd = [uint8(jet(n)*255) uint8(ones(n,1))].';

drawnow
set(p.Edge, 'ColorBinding','interpolated', 'ColorData',cd)

结果是:

enter image description here

摘自 Undocumented Features - Color-coded 2D line plots with color data in third dimension。原作者是thewaywewalk。归因详情可在contributor page上找到。该来源在CC BY-SA 3.0下获得许可,可以在Documentation archive中找到。参考主题ID:2383和示例ID:7849。

答案 1 :(得分:2)

这是一种可能的方法:使用从所需色彩图中获取的不同颜色明确地绘制线条的每个线段。

x = 1:10; % x data. Assumed to be increasing
y = x.^2; % y data
N = 100; % number of colors. Assumed to be greater than size of x
cmap = parula(N); % colormap, with N colors
linewidth = 1.5; % desired linewidth
xi = x(1)+linspace(0,1,N+1)*x(end); % interpolated x values
yi = interp1(x,y,xi); % interpolated y values
hold on
for n = 1:N
    plot(xi([n n+1]), yi([n n+1]), 'color', cmap(n,:), 'linewidth', linewidth);
end

enter image description here