Neural Network for finding characteristic points in data
1 view (last 30 days)
Show older comments
I'm trying to find characteristics within a data vector in matlab. The data is the force of a stamping process. The function should be able to identify process characteristics for different materials, stroke and sample rates and obviously different states of wear. Because of all these boundaries, it's difficult to implement mathematical models for these characteristics. That's why I was wondering if I could use a neural network for identifying these characteristics. I've checked out the matlab help and google for the neural toolbox, but didn't really find what I was looking for.
So here is what I'm looking for:
- The input vector has different length.
- Output should be points of the input data.
- One group of characteristics consists of a starting and an endpoint within the dataset.
Could anyone
- tell me if it is possible to do this with neural networks?
- post some helpful links to tutorials / papers / books / articles etc.
thanks for your help in advance. Attached you find some sample data for clarification.
0 Comments
Accepted Answer
Greg Heath
on 4 Oct 2016
You need N pairs of I-dimensional inputs and corresponding O-dimensional targets contained in 2 matrices
[ I N ] = size(input)
[ O N ] = size(target)
Then see the regression function documentation:
help fitnet
doc fitnet
Hope this helps
Thank you for formally accepting my answer
Greg
More Answers (0)
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!