convert a matrix to column vector

5 次查看(过去 30 天)
I woule like to convert a matrix [31,6000] to a cloumn vector
31 rows and 6000 column
to one column vector
please advice
  2 个评论
Budoor Salem
Budoor Salem 2021-2-21
编辑:Budoor Salem 2021-2-21
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

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2021-2-21
TheMatrix(:)
%or
reshape(TheMatrix,[],1)
The order would be all of column 1, followed by all of column 2, then all of column 3, and so on.
If you need it to be ordered all of row 1 followed by all of row 2, and so on, then
reshape(TheMatrix.',[],1)

更多回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021-2-21
result=matrix(:)

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by