Improved Support for Loading Large Files
Posted on Feb 28th, 2010 by Alex Kirillov
Handling of large (500 MB and more) files has been significantly improved:
- If there is not enough RAM to fit continuous or waveform data values, NeuroExplorer uses temprorary files to store these values. Please make sure that there is enough disk space on the drive that contains TEMP directory.
- Large .plx files can be imported several times faster
Expanded and Updated Documentation
Posted on Nov 29th, 2009 by Alex Kirillov
NeuroExplorer documentation has been reworked and expanded:
- For every analysis, every analysis parameter is listed and described
- For every analysis, every column in the Summary window is listed and described
- For every NexScript function, every parameter is listed and described
- For every NexScript function, a sample code that uses this function is provided
- New NeuroExplorer manual pdf file is generated (download the file here)
- The manual has a bookmark view for quick navigation
- All the hyperlinks (to external resources and to pages inside file) are live
New NexScript Construct
Posted on Nov 10th, 2009 by Alex Kirillov
A new construct doc[VarName] was added to NexScript. Instead of:
doc=GetActiveDocument()
variable=GetVarByName(doc,"Neuron04a")
you can now use:
doc=GetActiveDocument()
variable=doc["Neuron04a"]