neural network, using simulink, then nn toolbox
Ältere Kommentare anzeigen
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 Kommentar
Olalekan Babatunde
am 20 Mär. 2017
Bearbeitet: Olalekan Babatunde
am 20 Mär. 2017
Antworten (1)
Abel Babu
am 21 Feb. 2017
0 Stimmen
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 Kommentar
Olalekan Babatunde
am 20 Mär. 2017
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!