Neural Network: Single Input, Multiple Output

6 views (last 30 days)
Jovan
Jovan on 16 Apr 2013
Guys,
I need your help ASAP! I have a vector 1x1000 entering my NN, and my target output shoudld be a 7x5x1000 3D matrix, meaning a a 2D 7x5 matrix describes each point of my input vector, since there are 1000 periods, its a 3D matrix 7x5x1000.
How can I do this? Usually NNs have a mulitple input, single output, and I want to do the opposite.
Would appreciate your help!
JC

Answers (1)

Greg Heath
Greg Heath on 17 Apr 2013
Unfold your target images to 35x1 column vectors using (:) or reshape. Then
[I N ] = size(input) % [ 1 1000]
[ O N ] =size(target) %[ 35 1000]
Hope this helps.
Thank you for formally accepting my answer
Greg

Community Treasure Hunt

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

Start Hunting!