What can I do to make the output characteristic of the network is two value, that is the implement multivariate input and multivariable output

2 Ansichten (letzte 30 Tage)
I want to change the network structure to achieve that the predicted value of the output is two features. the net work is as follows link, but i can't realize my idea. please help me, thank you very much. hope you have a nice day!

Akzeptierte Antwort

Taylor
Taylor am 12 Sep. 2024
numResponses in your code is the value that determines the number of outputs from your network. Change that from "1" to "2" to get two outputs. Your "Y" variables will also need to be modified to contain two responses as well.
  5 Kommentare
Taylor
Taylor am 19 Sep. 2024
YrTrain(i,1) is a numeric array that only has space for one number. outputn_train(:,1) is a numeric array that contains two numbers, so it will not fit into YrTrain(i,1) when you try to assign it in line 85. That is what is meant by "The assignment cannot be performed because the size on the left side is 1×1 and the right side is 2×1". Line 84 runs sucessfully becuase XrTrain is a cell array, as indicated by the curly brackets. There are multiple ways to edit line 85 so that it runs sucessfuly. You could make YrTrain a cell array like XrTrain by using curly brackets:
YrTrain{i,1} = ourputn_train(:,i);
You could also just increase the size of the numeric array:
YrTrain(i,:) = outputn_train(:,i);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by