Array Types

Source code Author Update time

using Plots
pythonplot()

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

using StaticArrays, OffsetArrays
sv = SVector{10}(rand(10))
ov = OffsetVector(rand(10), -2)
plot(Any[sv, ov], label = ["StaticArray" "OffsetArray"])
plot!(3ov, ribbon = ov, label = "OffsetArray ribbon")
2023-08-30T09:35:10.721662 image/svg+xml Matplotlib v3.7.2, https://matplotlib.org/

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