Custom color map for plotting matrix values
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Here's an example of what I want to do, but instead of a loop for the plot, I want to feed in plot(x,y); instead of plot(x,y(i,:))
% Define vector values
n = 101; N = 30;
x = linspace(0,2,n);
y = ((-N/2:N/2)').*x.^4;
% Plot
figure; hold on;
% Prepare colormap
Color1 = [0,0.5,1];
Color2 = [1,0.5,0];
for i = 1:N
Col = Color1 + (Color2 - Color1)*(i-1)/(N-1);
plot(x,y(i,:),'Color',Col);
end
Where, I want to replace
for i = 1:N
Col = Color1 + (Color2 - Color1)*(i-1)/(N-1);
plot(x,y(i,:),'Color',Col);
end
with
for i = 1:N
Col(i,:) = Color1 + (Color2 - Color1)*(i-1)/(N-1);
end
plot(x,y,'Colors',Col);
with the following plot as the result.

2 Commenti
Adam
il 28 Lug 2017
What are you actually trying to do? Colourmaps don't apply to line plots whose default colours are controlled by the 'ColorOrder' property of the colourmap.
But your 'Col' variable is just a 3-element vector - i.e. a single colour, so if you just want to set all lines to the one colour then that is trivial, but doesn't count as a colourmap so I assume something is missing from your example?
Risposta accettata
Image Analyst
il 30 Lug 2017
I think you probably want scatter(). With scatter(), you can pass in an array of colors so that you can vary each data point's color on a point-by-point basis.
If you really want color order, see my attached demo, but I don't think you want that over scatter.
3 Commenti
Image Analyst
il 30 Lug 2017
OK, now that I see what you want in your plot you just inserted I guess you want colored lines so scatter() can't do that.
But did my colororder demo help you? Look - I'll even include a screenshot from it:

Look like what you want, right?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Orange in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!