README.md

February 7, 2015 ยท View on GitHub

###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)