Julia + Winston的stem()绘图函数(类似于MATLAB)

时间:2014-04-15 13:07:59

标签: julia

我正在使用带有Julia的Winston库进行绘图。 Winston和MATLAB中的干线图相同? (注意:winston在标签中的条目与Julia的Winston库不同。)

2 个答案:

答案 0 :(得分:4)

不确定内置了什么,但这似乎得到了你想要的东西

using Winston

x = randn(10)

function stemplot(x, args...)
    n = length(x)

    p = FramedPlot()
    add(p, Points(1:n, x, kind="filled circle"))
    map(i-> add(p,  Curve([i,i], [0,x[i]])), 1:n)
    add(p, Curve([1,n], [0,0]))

    p
end
stemplot(x)

答案 1 :(得分:2)

Winston包中现在有一个干线图功能。以下是文档页面:http://winston.readthedocs.org/en/latest/fun/stem.html

TL; DR:

stem(y[,spec::ASCIIString])
stem(x,y[,spec::ASCIIString])