From your question I understand that you have calculated the Chebyshev beam output but you want it in a specific form so that you can multiply it with your weights. The current dimension of the output is 1x3561 but you have a 10x1 array to multiply it with so you need to extend the Chebyshev beam to match the dimensions. In this case you can just extend your matrix so that it will be of the required dimension i.e 10x3561. Refer to the below line of code to understand how to do it.
expanded_Chebyshev = repmat(Chebyshev_real, 10, 1);
This line of code uses "repmat" to replicate the "Chebyshev_real" array 10 times along the vertical axis, resulting in a 10x3561 matrix. Each row of "expanded_Chebyshev" will be identical and contain the original Chebyshev weights calculated for your beam pattern.
For more information on the "repmat" function, refer to the below documentation:
I hope this helps.