I have 2 vectors and one matrix that I would like to fit them all on one matrix with 31 columns
the 1st vector is 6000 elements t=[0:0.1:600]
the 2nd vector is 31 emments : x=[0:0.01:0.3]
the matrix c is numbers with size of 31 rows and 6000 columns
so what I need to do is to make a new matrix where the it has 6000 rows and 3 columns
where the fisrt coumn is t
t=
0
0.1
0.2
0.3
.
.
6000
then the second colum of the matrix is the x vector strating from
0
0.01
0.02
.
.
31
and repeated
meaning each value of t whould have 31 diffrent value of x
finall the matrix c I would like to convert it to a column vector to be as a third coumn in the new matrix
please help
