I have deep neural network where I want to include a layer which should have one input and two outputs. For example, I want to construct an intermediate layer where Layer-1 is connected to the input of this intermediate layer and one output of the intermediate layer is connected to Layer-2 and another output is connected to Layer-3. Moreover, the intermediate layer just passes the data as it is through it without doing any mathematical operation on the input data. I have seen additionLayer in MATLAB, but it has only 1 output and this function is read-only for the number of outputs.