Scope
Basic Operation of Scopes
See Basic Operation of Writers since the operation of Writer
and that of Scope
is very similar.
Full API
Jusdl.Components.Sinks.Scope
— TypeScope(input::Bus, buflen::Int=64, plugin=nothing, args...; kwargs...)
Constructs a Scope
with input bus input
. buflen
is the length of the internal buffer of Scope
. plugin
is the additional data processing tool. args
,kwargs
are passed into plots(args...; kwargs...))
. See (https://github.com/JuliaPlots/Plots.jl) for more information.
When initialized, the plot
of Scope
is closed. See open(sink::Scope)
and close(sink::Scope)
.
Missing docstring for update!(s::Scope, x, yi)
. Check Documenter's build log for details.
Base.close
— Methodclose(sink::Scope)
Closes the plot window of the plot of sink
.
Base.open
— Methodopen(sink::Scope)
Opens the plot window for the plots of sink
.