How to add a black line using brewermap
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I want to add an extra black line to a plot with 5 lines where I am using:
map = brewermap(5,'Blues');
set(0, 'DefaultAxesColorOrder', map)
legendLabels=[];
for iA=1:length(Avec)
plot(xvec,yvec, '*-', 'LineWidth',3,'Markersize',3); hold all
legendLabels=[legendLabels,{['$A=' num2str(Avec(iA)) '$']}];
end
plot(Avec, minvec,':k','LineWidth',3,'Markersize',3); hold all % black line
lh=legend(legendLabels{:},'min','fontweight', 'bold','fontsize',24,'Interpreter', 'latex','Location','best','NumColumns',1);
Right now in the legend I see the data twice, and the same colours again, no black line.
Thanks in advance for your help!

2 Kommentare
Antworten (1)
Image Analyst
am 25 Nov. 2019
What is that thing? A legend? How did you make it? Why are there no text strings with it? Did you specify null strings?
If you want another legend line, with no curve with it, you can just plot a single point in the color you want.
plot(x1(1), y1(1), 'k.');
then call legend. Because of that extra call to plot, you should have another legend line, though since the plot is just a single point, you won't notice it.
To put up a line you can call line([x1,x2], [y1,y2]).
Call line with the y values being the min value you want the line at:
hold on;
line(xlim, [minValue, minValue], 'Color', 'k', 'LineWidth', 2);
3 Kommentare
Image Analyst
am 26 Nov. 2019
Bearbeitet: Image Analyst
am 26 Nov. 2019
No, because I get
Undefined function or variable 'brewermap'.
You forgot to included the products when you filled out the form to submit your question. Evidently brewermap is either one of your functions you forgot to attach, or in a toolbox that I don't have. Please spare the others the trouble I had by listing in the product section what toolbox it's in, or else attach it, if it's a custom function of yours.
Create your legendLabels like this, not like what you did:
legendLabels{iA} = ['$A=', num2str(Avec(iA)), '$'];
Any idea why your legends all say "data n" instead of "$A=n"???
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!