neural network, using simulink, then nn toolbox
Afficher commentaires plus anciens
so i have a set of date, in matrix or state space form (A,B,C,D), and i am trying to use nn to detect anomalies in this system. please how do I achieve the following.
- get target data to use in the fitting tool
- get the training data to use for this system,
1 commentaire
Olalekan Babatunde
le 20 Mar 2017
Modifié(e) : Olalekan Babatunde
le 20 Mar 2017
Réponses (1)
Abel Babu
le 21 Fév 2017
0 votes
Hi Olalekan,
This MATLAB example is a good place to start for anomaly detection : https://in.mathworks.com/help/ident/examples/fault-detection-using-data-based-models.html
It describes various approaches to fault detection of systems. All the methods start by first generating the system model as a state-space and then using various methods to account for faults or anomalies, those include - residual analysis, Normal-Deteriorated States etc.
After setting up the system, anomaly detection can be done using either of the methods:
- Fuzzy C-Means Clustering. See fcm() in Fuzzy Logic Toolbox.
- Support Vector Machine Classifier. See fitcsvm () in Statistics and Machine Learning Toolbox.
- Self-organizing Maps. See selforgmap() in Neural Network Toolbox.
This has been documented in the article as well.
Abel
1 commentaire
Olalekan Babatunde
le 20 Mar 2017
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!