I don't understand what this u(:,1) does to matrix or vector?
40 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi
What does the following notation mean
u(:,1)
Does it covert a row vector to a column vector?
Thanks
0 Commenti
Risposta accettata
pfb
il 27 Apr 2015
Modificato: pfb
il 27 Apr 2015
It gives you the first column of the array u.
If u is a row vector, that is the 1st element.
if u is a column vector, that is the entire vector.
If you want to transform a row vector into a column, see u', transpose(u), or u(:).
4 Commenti
Stephen23
il 28 Apr 2015
The syntax x(:) creates a column vector out of x, regardless of the shape of x. Here is some documentation and examples:
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!