how i can change column vector into row vector??
64 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
n = [1 2 3 4 5]
n =
1 2 3 4 5
>> r = n'
r =
1
2
3
4
5
Then i want to change into row vector again??
2 Commenti
Aditya
il 23 Giu 2024
To convert a column vector back into a row vector, use the transpose operation. Simply apply the transpose operator (') to the column vector to obtain the row vector.
Stephen23
il 23 Giu 2024
"Simply apply the transpose operator (')..."
' is the operator for complex conjugate transpose: https://www.mathworks.com/help/matlab/ref/ctranspose.html
Risposte (1)
Torsten
il 23 Giu 2024
Modificato: Torsten
il 23 Giu 2024
Simply converting a row vector into a column vector needs the usual transpose operator which is .' You used only ' with is conjugate transpose. This will make a difference if the elements of the vector are complex numbers:
n = [1+1i,2-0.5*1i];
n'
n.'
To change the column vector into the original row vector, use .' again:
n = [1 2 3 4 5];
n.'
(n.').'
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!