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 次查看(过去 30 天)
显示 更早的评论
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!
0 个评论
采纳的回答
Taylor
2024-9-12
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 个评论
Taylor
2024-9-19
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);
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!