MATLAB: How to create column vector

column vectorMATLAB Online Server

So I need to create a matrix were first column of the matrix is 30 rows of the first column vector then second column of the matrix is also 30 rows of second column vector and same for the third column of the matrix which is also 30 rows of the third vector. Is there a very simple command for that beacuse i simply can't find. And also is it possible to export my matrix to excell on matlab online.

Best Answer

From your question, it appears that you want to concatenate the matrix. In MATLAB, square brackets [ ] are used for concatenation. See this example: https://www.mathworks.com/help/matlab/math/creating-and-concatenating-matrices.html#OverviewCreatingAndConcatenatingExample-3
v1 % 30x1 vector


v2 % 30x1 vector
v3 % 30x1 vector
V = [v1 v2 v3];