convert a matrix to column vector

조회 수: 7 (최근 30일)
Budoor Salem
Budoor Salem 2021년 2월 21일
댓글: Budoor Salem 2021년 2월 21일
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일
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);

댓글을 달려면 로그인하십시오.

채택된 답변

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