Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Simplfying Line Plot Command

1 Ansicht (letzte 30 Tage)
Michael
Michael am 11 Mär. 2014
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Is there any way to accomplish this:
plot(largebinsmesh, guessCurve,'k-','linewidth',3.0);
plot(largebinsmesh, guessCurve,'w-.','linewidth',1.2);
in one line with plot?

Antworten (1)

Walter Roberson
Walter Roberson am 11 Mär. 2014
No. The closest you could get would be,
h = plot(largebinsmesh, guessCurve, 'k-', largebinsmesh, guessCurve,'w-.','linewidth',1.2);
set(h(1), 'linewidth', 3.0);
This presumes that guessCurve is a vector; if it is a 2D array then it would be h(1:size(largebinmesh,2)) that would have to be set()
plot() accepts multiple string specifiers for the plotspec but it does not accept multiple parameter value pairs for the same parameter name.

Community Treasure Hunt

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

Start Hunting!

Translated by