Effacer les filtres
Effacer les filtres

Create a row vector with specific condition

2 vues (au cours des 30 derniers jours)
Chet Sharma
Chet Sharma le 23 Mar 2018
Commenté : Chet Sharma le 23 Mar 2018
Hi I'd like to make a row vector as follows:
rowVect = [x y y y y y]
Right now, I'm doing:
rowVec = x
rowVec(2:5)=y
Is there a way to do this in one line of code?
Thanks C

Réponse acceptée

James Tursa
James Tursa le 23 Mar 2018
Modifié(e) : James Tursa le 23 Mar 2018
What's wrong with the first method you propose?
rowVect = [x y y y y y];
If you want to generalize it (maybe you don't know the number of y's you need ahead of time)
n = number of y's you want
rowVect = [x,repmat(y,1,n)];
That being said, your two-liner above is a pretty good way of doing it. Is there some particular reason you don't like it?
  1 commentaire
Chet Sharma
Chet Sharma le 23 Mar 2018
Thanks!! I tried everything except look at repmat..my bad! To answer your question, nothing wrong with what I wrote, but exactly as you said right...the number of y's I have changes, so I need to generalize. So your solution is exactly what I needed. Thanks James

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