Skip to content

MATLAB support update.

Compare
Choose a tag to compare
@gmierz gmierz released this 18 Aug 17:16
· 24 commits to master since this release
f5ae6db

The following changes have been made since v1.0.0, these have also been incorporated in the pypi module:

  1. Matlab '.mat' output is now supported! Instead of save_csv, use save_mat to store '.mat' files.
  2. Merging multiple datasets is working as expected now.
  3. Simplified rejected trial exclusion/inclusion from data. At any level of the data_container objects, set datastore.exclude_rejects = False to include rejected trials in the data obtained from get_matrix calls. Setting this flag to False also changes what is saved with the save_csv and save_mat functions since they use get_matrix to gather data that needs to be saved.
  4. Raw trial data that is processed by some pre/post functions is no longer overwritten by the processed data. This data now exists in the proc data_type rather than the original data type.
  5. Added --save-mat and --prefix to the optional arguments that can be used from the command line interface.
  6. .data can now be used to access the processed data instead of .data_store. .data_store is still available but will be removed in a future release.
  7. Documentation was updated to reflect the changes.
  8. (Under-the-hood) Logging is now a bit simpler, and not as verbose as before. With this patch, preparations are being made to remove threaded options.