neural network, using simulink, then nn toolbox
Mostrar comentarios más antiguos
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 comentario
Olalekan Babatunde
el 20 de Mzo. de 2017
Editada: Olalekan Babatunde
el 20 de Mzo. de 2017
Respuestas (1)
Abel Babu
el 21 de Feb. de 2017
0 votos
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 comentario
Olalekan Babatunde
el 20 de Mzo. de 2017
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!