Creating vector from a matrix

4 Ansichten (letzte 30 Tage)
Berkay
Berkay am 29 Aug. 2022
Kommentiert: Chunru am 30 Aug. 2022
I want to create a column vector from every second element of the matrix
how can I do it?

Antworten (1)

Chunru
Chunru am 29 Aug. 2022
Bearbeitet: Chunru am 30 Aug. 2022
A = randn(3:4)
A = 3×4
-1.8158 0.3369 1.9546 0.1616 -0.6009 -0.4416 -0.0984 1.6391 3.4299 -0.4452 -0.7799 1.4173
v = A(1:2:end)'
v = 6×1
-1.8158 3.4299 -0.4416 1.9546 -0.7799 1.6391
  2 Kommentare
Berkay
Berkay am 30 Aug. 2022
Yes That's what I want but how can I write this vector as column vector?
Chunru
Chunru am 30 Aug. 2022
Use " ' ". See above.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Multidimensional Arrays 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