https://github.com/IoSR-Surrey/MatlabToolbox
General purpose Matlab toolbox
https://github.com/IoSR-Surrey/MatlabToolbox
Last synced: 15 days ago
JSON representation
General purpose Matlab toolbox
- Host: GitHub
- URL: https://github.com/IoSR-Surrey/MatlabToolbox
- Owner: IoSR-Surrey
- License: mit
- Created: 2016-03-07T14:17:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T22:40:26.000Z (over 5 years ago)
- Last Synced: 2024-11-02T19:34:17.976Z (6 months ago)
- Language: Matlab
- Size: 715 KB
- Stars: 129
- Watchers: 16
- Forks: 43
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-speech-enhancement - [Code
README
# IoSR Matlab Toolbox
A general purpose Matlab toolbox containing functions and classes for: auditory modelling, signal processing, sound source separation, statistics, plotting, etc. See [Contents.m](https://github.com/IoSR-Surrey/Toolbox/blob/master/+iosr/Contents.m) for a full list of functions/classes.
## Installation
Basic installation only requires you to add the install directory to the Matlab search path.
If you wish to perform certain audio / signal processing tasks (especially spatialisation), please navigate to the install directory and type
```
iosr.install
```This will automatically download the toolbox's dependencies for these tasks, and add the necessary paths to your search path.
## Usage
Use these functions as:
```
iosr..()
```(Ignoring the '+' in the folder name.) Alternatively, use the `import` directive to add one or more namespaces, e.g.:
```
import iosr.auditory
import iosr.*
```If using `import`, note that some function names may conflict with built-in Matlab function names (e.g. `quantile`). One method of resolving the conflict and shortening the function call is to create a handle to any functions with conflicting names, e.g.
```
qntl = @iosr.statistics.quantile;
```Type
```
help iosr
```for more information.