VBA-toolbox-master
VBa matlab 

所属分类:matlab编程
开发工具:matlab
文件大小:706KB
下载次数:0
上传日期:2021-04-28 19:36:41
上 传 者dactator
说明:  大多数神经生物学和行为数据模型可以分解为随时间演变的过程和静态观察图。 有了这些演化和观察映射,该工具箱可用于模拟数据,执行统计数据分析,优化实验设计等。简而言之,该工具箱提供: 经典统计测试的即插即用工具 行为和神经生物学数据时间序列的计算模型库 用于参数估计和模型比较的快速高效的概率推理技术(+实验设计优化) 结果的图形可视化(+模型反转的高级诊断)
(Most models of neurobiological and behavioral data can be broken down into processes that evolve over time and static observation mappings. Given these evolution and observation mappings, the toolbox can be used to simulate data, perform statistical data analysis, optimize the experimental design, etc... In brief, the toolbox provides: plug-and-play tools for classical statistical tests a library of computational models of behavioral and neurobiological data time series quick and efficient probabilistic inference techniques for parameter estimation and model comparison (+ experimental design optimization) graphical visualization of results (+ advanced diagnostics of model inversion))

文件列表:
LICENSE (35144, 2019-08-22)
VBA_BMA.m (4413, 2019-08-22)
VBA_BPA.m (3057, 2019-08-22)
VBA_EKF.m (7338, 2019-08-22)
VBA_LMEH0.m (1733, 2019-08-22)
VBA_MCMC_predictiveDensity.m (4732, 2019-08-22)
VBA_MCMC_predictiveDensity_fb.m (5005, 2019-08-22)
VBA_MFX.m (17972, 2019-08-22)
VBA_NLStateSpaceModel.m (16499, 2019-08-22)
VBA_PRESS.m (3183, 2019-08-22)
VBA_ReDisplay.m (23445, 2019-08-22)
VBA_designEfficiency.m (3152, 2019-08-22)
VBA_getLaplace.m (6782, 2019-08-22)
VBA_getNoise.m (2772, 2019-08-22)
VBA_groupBMC.m (10107, 2019-08-22)
VBA_groupBMC_btwConds.m (6728, 2019-08-22)
VBA_groupBMC_btwGroups.m (1136, 2019-08-22)
VBA_hyperparameters.m (11607, 2019-08-22)
VBA_main.m (2825, 2019-08-22)
VBA_optimPriors.m (22871, 2019-08-22)
VBA_setup.m (4139, 2019-08-22)
VBA_simulate.m (5938, 2019-08-22)
VBA_version.m (1556, 2019-08-22)
core (0, 2019-08-22)
core\VBA_FreeEnergy.m (4278, 2019-08-22)
core\VBA_GN.m (8240, 2019-08-22)
core\VBA_Hpost.m (2774, 2019-08-22)
core\VBA_IX0.m (1593, 2019-08-22)
core\VBA_IX_lagged.m (6151, 2019-08-22)
core\VBA_IX_lagged_binomial.m (6886, 2019-08-22)
core\VBA_Initialize.m (2192, 2019-08-22)
core\VBA_Iphi.m (3283, 2019-08-22)
core\VBA_Iphi_UNL.m (3363, 2019-08-22)
core\VBA_Iphi_binomial.m (3220, 2019-08-22)
core\VBA_Iphi_extended.m (4499, 2019-08-22)
core\VBA_Iphi_split.m (5218, 2019-08-22)
... ...

# VBA toolbox Official website: [https://mbb-team.github.io/VBA-toolbox/](https://mbb-team.github.io/VBA-toolbox) ## What is the VBA toolbox? Most models of neurobiological and behavioral data can be broken down into processes that evolve over time and static observation mappings. Given these evolution and observation mappings, the toolbox can be used to simulate data, perform statistical data analysis, optimize the experimental design, etc... In brief, the toolbox provides: * plug-and-play tools for classical statistical tests * a library of computational models of behavioral and neurobiological data time series * quick and efficient probabilistic inference techniques for parameter estimation and model comparison (+ experimental design optimization) * graphical visualization of results (+ advanced diagnostics of model inversion) ## Requirements This toolbox runs in Matlab. Although it should run in all versions of Matlab, the toolbox has only been extensively tested on Matlab 2013 and higher. ## How do I install the toolbox? #### Get the toolbox - Ideally, use [Git](https://git-scm.com/) to [clone](https://github.com/MBB-team/VBA-toolbox/clone) the [repo of the toolbox](https://github.com/MBB-team/VBA-toolbox) on your computer: ```bash cd ~/path/to/parentDirectory git clone https://github.com/MBB-team/VBA-toolbox.git ``` You will then be able to stay up to date with the latest versions using the command: ```bash cd ~/path/to/parentDirectory/VBA-toolbox git pull ``` - If you don't want to install Git, you can alternatively download a zip of the latest stable release of the toolbox directly form the download page of the official website: [http://mbb-team.github.io/VBA-toolbox/download](http://mbb-team.github.io/VBA-toolbox/download/). #### Add the toolbox folder to your Matlab path: ```matlab cd ~/path/to/parentDirectory/VBA-toolbox VBA_setup() ``` Note that you might have do run `VBA_setup()` after an update of the toolbox (eg. after a `git pull`). #### Enjoy! You can now try one of the demos or tutorials you can find in the `VBA-toolbox/demos` folder. If you have a recent version of Matlab (>= 2017), you can also run `VBA_test()` to check that everything works as intended on your system. ## Structure of the toolbox - `/` contains all the functions you can use directly in your scripts to call general routines like model simulation and inversion. - `/core` contains the sub-functions that implement the internal algorithms of the toolbox, like the variational estimation scheme. You should not use those functions directly! - `/demos` contains a large selection of computational models (ie. evolution and observation functions) you can use directly or adapt to your hypothesis. You will also find in this folder a series of demos that implement those models and tutorials demonstrating the various features of the toolbox. - `/legacy` contains some old code that will soon disappear but we keep for backward compatibility. - `/modules` contains a set of tools that complement the toolbox, like DCM generators or advanced models and scripts used in publications. - `/sandbox` contains code in development that is not yet fully functional and / or tested. Feel free to test them, or wait a bit until they move to the core. - `/tests` contains unit testing functions. This code help us ensure that the toolbox does what we want it to do... - `/third-party` contains code we did write ourselves but is needed by the toolbox. - `/utils` contains plenty of cool tools that you can use directly if you need, like random number generators, mathematical measures (eg. KL divergence), or nifty numerical tricks. ## Want more details? Please visit the [wiki pages](http://mbb-team.github.io/VBA-toolbox/wiki/) for tutorials, demos, and advanced features descriptions. You can also seek help on our [dedicated forum](http://mbb-team.github.io/VBA-toolbox/forum/). We will always be happy to help you with the toolbox if you need. ## How can I participate? The VBA-toolbox is an open-source, collaborative project. We gladly welcome contributions at all levels: - flag a bug or request a feature by creating a [new issue](https://github.com/MBB-team/VBA-toolbox/issues) on Github - provide your model to other users by integrating it directly in the toolbox. Send us an email, or directly create a pull request.

近期下载者

相关文件


收藏者