neural network, using simulink, then nn toolbox
Show older comments
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 Comment
Olalekan Babatunde
on 20 Mar 2017
Edited: Olalekan Babatunde
on 20 Mar 2017
Answers (1)
Abel Babu
on 21 Feb 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 Comment
Olalekan Babatunde
on 20 Mar 2017
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!