Avoiding for-loops with subsequent elements in arrays

1 vue (au cours des 30 derniers jours)
Sim
Sim le 9 Juin 2020
Commenté : Sim le 9 Juin 2020
Hi, given this
x = [0 10 20 30];
y = [20 10 10 15];
could you suggest a more compact (and faster) way to perform this operation?
A(1) = (y(1) - y(2)) / (x(2) - x(1));
for i = 2 : 4
A(i) = (y(i-1) - y(i)) / (x(i) - x(i-1));
end
Thanks to everyone!

Réponse acceptée

madhan ravi
madhan ravi le 9 Juin 2020
Modifié(e) : madhan ravi le 9 Juin 2020
-[0, diff(y) ./ diff(x)]
  4 commentaires
madhan ravi
madhan ravi le 9 Juin 2020
eh... well looks like you edited your question after I answered. Before since you didn’t preallocate A MATLAB fills the “first” element with “zero” so...
Sim
Sim le 9 Juin 2020
Yes, sorry, I forgot one line....

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by