neural network, using simulink, then nn toolbox
이전 댓글 표시
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
Olalekan Babatunde
2017년 3월 20일
편집: Olalekan Babatunde
2017년 3월 20일
답변 (1개)
Abel Babu
2017년 2월 21일
0 개 추천
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
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!