Neural Network for finding characteristic points in data

3 visualizaciones (últimos 30 días)
Tillmann
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
  1. tell me if it is possible to do this with neural networks?
  2. post some helpful links to tutorials / papers / books / articles etc.
thanks for your help in advance. Attached you find some sample data for clarification.

Respuesta aceptada

Greg Heath
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
  1 comentario
Tillmann
Tillmann el 5 de Oct. de 2016
Hey Greg,
Thanks for your help! I'm having some trouble defining the output matrix. Should the vectors contain the x-values of the data points that I'm looking for, or should the vectors be of length of the input vectors and contain only zeros except for the relevant data points?
Thanks for your help and sorry if this seems trivial to you, for me it's all new :-/

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by