i have two signals they look like sine wave but with some noise . in this signals of length 100 each i have 1-5 points each time(caqn change) i want to detect. my question is can i use neural network to detect points. i want network will have 2* 100 inputs which represent signal and 100 outputs which can be 1 or 0. the issue that each time i have different signals and the point location is different is it possible to design such network

 채택된 답변

Greg Heath
Greg Heath 2016년 3월 28일

0 개 추천

You don't need the complexity of a neural network.
Just use something like
d = 5
y = zeros(1,100);
for i = 1:100-d
if sae(x1(i:i+d)-x2(i:i+d)) > thresh
y(i+d) = 1
end
end
Hope this helps.
Thank you for formally accepting my answer
Greg

추가 답변 (1개)

michael scheinfeild
michael scheinfeild 2016년 3월 29일

0 개 추천

more complex example . the marked lines are outputs as one. they represent some stage of system which marked manually as ground truth. if i use if then else condition's it will be to large

댓글 수: 1

Greg Heath
Greg Heath 2016년 3월 30일
I don't fully understand your comment. However if you are complaining that multiple outputs have to be compared to multiple ground truth standards, then I feel for you.
Good Luck,
Greg

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

질문:

2016년 3월 28일

댓글:

2016년 3월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by