├── .gitignore ├── Example.mlx ├── README.md ├── SECURITY.md ├── createExampleData.m ├── functionSignatures.json ├── license.txt ├── spikeRasterPlot.m └── spikeRasterPlot.png /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.asv 3 | -------------------------------------------------------------------------------- /Example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/Example.mlx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /createExampleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/createExampleData.m -------------------------------------------------------------------------------- /functionSignatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/functionSignatures.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/license.txt -------------------------------------------------------------------------------- /spikeRasterPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/spikeRasterPlot.m -------------------------------------------------------------------------------- /spikeRasterPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATLAB-Graphics-and-App-Building/spike-raster-plot/HEAD/spikeRasterPlot.png --------------------------------------------------------------------------------