Neural Network for finding characteristic points in data
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Tillmann
el 4 de Oct. de 2016
Comentada: Tillmann
el 5 de Oct. de 2016
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 comentarios
Respuesta aceptada
Greg Heath
el 4 de Oct. de 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
Más respuestas (0)
Ver también
Categorías
Más información sobre Sequence and Numeric Feature Data Workflows en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!