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.
我的代码有什么问题?
octave:26> plot([1;2;3;4],[1;8;27;64], 'marker', 'o', 'linestyle', 'none', 'marker', 'o', 'markeredgecolor', 'red', 'markerfacecolor', 'black', 'markersize', 20);
它创建蓝色空圆圈(圆圈内有白色背景)。
版本信息:GNU Octave,版本 3.2.4
可能是版本问题。这是我使用最新版本(3.6.1)得到的:
你的颜色是否以某种方式反转?白色和黑色是对立的,红色和蓝色是对立的。您可以尝试不同的颜色,看看它们是否系统性错误。如果删除 edgecolor 或 facecolor 规范,它会起作用吗?