First column matrix into ones

4 vues (au cours des 30 derniers jours)
Y LIN
Y LIN le 5 Mar 2022
Commenté : Y LIN le 5 Mar 2022
Hello! How to extract the first coulmn of the matrix and make it ones?
For exmaple:
X = [1 4; 2 2; 3 6];
y = ones(X(:,1));
but it seems not work.
Thanks advanced for your help!
  2 commentaires
Walter Roberson
Walter Roberson le 5 Mar 2022
Okay, X(:,1) would be [1;2;3] .
Now what do you mean by "make it ones" ? Are you asking for a vector of ones with the same number of entries as there are rows in the table? Are you asking that afterwards X would be
1 4
1 2
1 6
??
Y LIN
Y LIN le 5 Mar 2022
Hello! Thanks for your reply. I'd like to extract only first column of the matrix, like example 3x2 into 3x1 and then make it all value as 1. How can I do that?

Connectez-vous pour commenter.

Réponse acceptée

Torsten
Torsten le 5 Mar 2022
Modifié(e) : Torsten le 5 Mar 2022
X = [1 4; 2 2; 3 6];
X(:,1) = 1
or
y = ones(size(X,1),1)
depending on how your question is meant.
  2 commentaires
Y LIN
Y LIN le 5 Mar 2022
Hello! Thanks for your reply. I'd like to extract only first column of the matrix. Like example 3x2 extract 3x1 and then make all value as 1. How can I do that?
Y LIN
Y LIN le 5 Mar 2022
Oh, sorry for late refreshing the page! It works! Thank you so much for your help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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