Neural Network for finding characteristic points in data
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Greg Heath
2016-10-4
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!