I don't understand what this u(:,1) does to matrix or vector?

31 vues (au cours des 30 derniers jours)
DM
DM le 27 Avr 2015
Commenté : Stephen23 le 28 Avr 2015
Hi
What does the following notation mean
u(:,1)
Does it covert a row vector to a column vector?
Thanks

Réponse acceptée

pfb
pfb le 27 Avr 2015
Modifié(e) : pfb le 27 Avr 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 commentaires
DM
DM le 27 Avr 2015
I have also come across the following notation x(:)? Do you know what it means?
Stephen23
Stephen23 le 28 Avr 2015
The syntax x(:) creates a column vector out of x, regardless of the shape of x. Here is some documentation and examples:

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur NaNs dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by