convert a matrix to column vector

5 Ansichten (letzte 30 Tage)
Budoor Salem
Budoor Salem am 21 Feb. 2021
Kommentiert: Budoor Salem am 21 Feb. 2021
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 Kommentare
Budoor Salem
Budoor Salem am 21 Feb. 2021
Bearbeitet: Budoor Salem am 21 Feb. 2021
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 am 21 Feb. 2021
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Feb. 2021
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)

Weitere Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 21 Feb. 2021
result=matrix(:)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by