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中的茎图绘制一些离散值。我发现如果该值为零,则茎图将在 x 轴上放置一个圆圈以显示零。如果值为零,有没有办法让茎不显示圆圈?
将它们视为 NaN,即:
Y = [1;2;3;0;3;2;4;0;1]; Y(Y == 0) = NaN; stem(Y);
第 4 和第 8 个索引仍将存在于 x 轴上,但如果观察值设置为NaN,则不会绘制线或圆。
NaN