美文网首页随笔
数据可视化:octave画 pdf

数据可视化:octave画 pdf

作者: shudaxu | 来源:发表于2019-04-17 17:53 被阅读0次

    hist:直接画出histogram
    2
    histc
    计算y轴坐标点:
    range=0:0.05:1;
    coordinate=histc(data,range)

    image.png

    hist:
    octave:54> x = randn(10000,1);
    octave:55> hist(x,40)
    octave:56> hold on
    histc:
    octave:61> range=-4:0.2:4;
    octave:62> xx = histc(x,range);
    octave:59> plot(range,xx,"r",range,xx,"b-")

    相关文章

      网友评论

        本文标题:数据可视化:octave画 pdf

        本文链接:https://www.haomeiwen.com/subject/hztowqtx.html