Filter löschen
Filter löschen

Plotting multiple series on same plot all in black but with different point markers and line style

2 Ansichten (letzte 30 Tage)
Hi,
I am tryong For loops to plot data with multiple series to be plotted on same graphs. The number of series varies thus, the line it plots varies also. Is there any way i can use to plot these in black with different line styles and point markers. If someone can help with a generic code. Attached is a plot. I want that the line styles and point markers be different for each series plotted.

Antworten (1)

Walter Roberson
Walter Roberson am 11 Nov. 2019
Bearbeitet: Walter Roberson am 11 Nov. 2019
See the axes properties ColorOrder and LineStyleOrder . You can probably set ColorOrder to a single color (the black you want), and then it should automatically cycle through all of the style and marker combinations you have created.
Or you could just create a celll array StyleCombos of style and marker combinations, and
for seriesnumber = 1 : whatever
plot(datax, datay, StyleCombos{seriesnumber}, 'color', 'k')
hold on
end

Kategorien

Mehr zu Discrete Data Plots 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!

Translated by