Skip to content
Snippets Groups Projects
script.jl 210 B
Newer Older
using Plots

function testFunc01(x,y)
    return x.+y
end

function testFunc01(a,b,c)
    return a.*b.*c
end

function dataPlotTest(y)
    plot(y)
    savefig("./testPlot.png")
end


# dataPlotTest([1,2,3,4])