- Use "histogram", "boxplot", or "scatter" functions to visualize the distributions of your parameters and outcomes.
- Use "corrplot" to visualize correlations between parameters and between parameters and outcomes.
- Use "sequentialfs" (sequential feature selection) to identify the most important features. This function can help you find a subset of the input variables that most effectively predict the outcome.
- Consider using principal component analysis (PCA) with "pca" to reduce dimensionality and possibly uncover underlying patterns in your data.
- scatter: https://www.mathworks.com/help/matlab/ref/scatter.html
- corrplot: https://www.mathworks.com/help/econ/corrplot.html
- sequentialfs: https://www.mathworks.com/help/stats/sequentialfs.html
- pca: https://in.mathworks.com/help/stats/pca.html
- For feature selection: https://www.mathworks.com/help/stats/selecting-features-for-classifying-high-dimensional-data.html
- For classification : https://www.mathworks.com/help/stats/classification-example.html
- For cross validation: https://www.mathworks.com/help/stats/crossval.html