Refer to the README.
The GUI relies on external libraries. The GUI has only been tested on Windows operating systems (10, 8 and 7)
Please do include any third party library and make sure that you have appropriate licensing to use third party materials.
Please only add the new algorithms under the Algorithms directory of the reposirty and update the code map. Please add clear helper headers at the begining of your function for clear instructions.
The added subroutines need to be included in the BioSigKit constructor. Once you added a new routine please comment and date it.
Not all current code follows the conventions below but these will be followed for future developments.
- lowerCamelCase
General variables
- UpperCamelCase
Functions
- Maximize the use of semantic and descriptive variables names (e.g. faceIndices
not fcInd
or fi
). Avoid abbreviations except in cases of industry wide usage. In some cases non-descriptive and short variable names are exceptable for instance vertices (points), faces, edges, colors and logic arrays may be denoted V
, F
, E
, C
, L
. Furthermore, if a mathematrical symbol or letter is commonly used for some entity it may be acceptable to use short names e.g. coordinates may be referred to as X
, Y
and Z
and image coordinates of indices may be referred to as I
, J
and K
. In some cases the use of capital or non-capital letters refers to tensors/matrices/arrays/sets and scalars/components/subsets respectively, e.g. a multitude of scalars c
may be contained within an array or matrix C
, or a cell array D
may contain individual entries referred to as d
.
Currently, demo.m can be used to test all the subroutines of the toolbox.
master