I have to write this down twice?
Mostrar comentarios más antiguos
X(i1:i2) = X(i1:i2) - const;
Do I have to use X(i1:i2) twice in the line to achieve the result above?
Respuestas (2)
Image Analyst
el 18 de Oct. de 2015
0 votos
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
el 18 de Oct. de 2015
idx = i1:i2;
X(idx) = X(idx) - const;
Categorías
Más información sobre Vehicle Dynamics Blockset en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!