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

2 ビュー (過去 30 日間)
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.

回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 11 月 11 日
編集済み: Walter Roberson 2019 年 11 月 11 日
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

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by