Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 363 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 363 Bytes

###Introduction Visualizer is a simple GUI for quickly panning through a collection of data.

###Usage For an iterable variable A with a plot function defined for its elements, you can do the following

import Visualizer

function plotfunc(p::Winston.FramedPlot, A, i::Integer)
	plot(p, A[i])
end

Visualizer.visualize(A, 800, 600, "test plot", plotfunc)