I have to write this down twice?
Afficher commentaires plus anciens
X(i1:i2) = X(i1:i2) - const;
Do I have to use X(i1:i2) twice in the line to achieve the result above?
Réponses (2)
Image Analyst
le 18 Oct 2015
0 votes
Yes, that's correct.
Would you expect some other way to add a constant to just some of the elements in the vector? If so, what?
Walter Roberson
le 18 Oct 2015
idx = i1:i2;
X(idx) = X(idx) - const;
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!