Effacer les filtres
Effacer les filtres

Multiply values in array by *-1

2 vues (au cours des 30 derniers jours)
Edward Keavney
Edward Keavney le 28 Juil 2022
Commenté : Edward Keavney le 28 Juil 2022
Hi,
I have an array 1X106. I want to be able to multiply specific entries in the array by -1.
e.g., multiplying the 16, 17 and 18 value in the array by -1 whilst still keeping the remainder of the array with the original values.
Any help would be greatly appreciated,
Thanks!

Réponse acceptée

Chunru
Chunru le 28 Juil 2022
a = randn(1, 106);
a(14:20)
ans = 1×7
0.8401 1.6024 1.0470 -1.1157 0.2066 -2.0192 -0.6220
a(16:18)=-a(16:18);
a(14:20)
ans = 1×7
0.8401 1.6024 -1.0470 1.1157 -0.2066 -2.0192 -0.6220
  1 commentaire
Edward Keavney
Edward Keavney le 28 Juil 2022
Perfect, thank you very much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Tags

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by