Skip to main content
. 2022 Feb 21;22(4):1686. doi: 10.3390/s22041686
Algorithm 1. The mFCBF algorithm receives the users’ feature matrix (O), minimum correlation threshold (oTh) and the maximum correlation threshold (iTh) and returns the selected set of features.
1: Function mFCBF (FVS, oTh, iTh)
2: Calculate corr (O)
3: FVStmp  Select columns whose correlation with the output is > oTh
4: Calculate corr (FVStmp)
5: FVSoTh, iTh Select columns whose correlation with the input is < iTh and with the highest correlation with the output.
6: Return (FVSoTh, iTh)
7: End function