Array Types

Source code Author Update time

using Plots
gaston()

Plots supports different Array types that follow the AbstractArray interface, like StaticArrays and OffsetArrays.

begin
    using StaticArrays, OffsetArrays
    sv = SVector{10}(rand(10))
    ov = OffsetVector(rand(10), -2)
    plot([sv, ov], label = ["StaticArray" "OffsetArray"])
    plot!(3ov, ribbon = ov, label = "OffsetArray ribbon")
end
Gnuplot Produced by GNUPLOT 5.2 patchlevel 8 0 1 2 3 4 0.0 2.5 5.0 7.5 10.0 StaticArray OffsetArray OffsetArray ribbon '' StaticArray StaticArray OffsetArray OffsetArray OffsetArray ribbon OffsetArray ribbon '' ''

This page was generated using DemoCards.jl and Literate.jl.

This documentation is not for the latest stable release, but for either the development version or an older release.
Click here to go to the documentation for the latest stable release.