Initialize a vector for y will solve the issue. Else, you can also use the Matrix Concatenate block.
function y = fcn(u, v)
y = zeros(1, 10); % initialize a vector
y(1:5) = u;
y(6:10) = v;
end
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!