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

2 views (last 30 days)
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.

Answers (1)

Walter Roberson
Walter Roberson on 11 Nov 2019
Edited: Walter Roberson on 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

Categories

Find more on Discrete Data Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!