Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在matlab中有这些行:
pp1=probplot('normal',one_stone); set(pp1,'color','red')
这给出了一个到处都是红色的情节。
我想改变散点的颜色而不改变趋势线的颜色。
您可以像这样分别设置线条和标记的属性:
set(pp1(1),'Color','r') % line set(pp2(2),'Color','b') % markers