how to program given formula
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Neeed help on how to write this formula in matlab.
if n=100
i=(1,.....,n)
0 commentaires
Réponse acceptée
Plus de réponses (1)
Bryant Pong
le 7 Nov 2020
Assuming that you have arrays of values for x and y:
n = 100;
% Preallocate memory to save some time (n - 1 values)
l = zeros(1, n - 1);
for i = 2:100
deltaX = x(i) - x(i - 1);
deltaY = y(i) - y(i - 1);
l(i - 1) = sqrt(deltaX^2 + deltaY^2);
end
0 commentaires
Voir également
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!