how to program given formula
1 view (last 30 days)
Show older comments
Neeed help on how to write this formula in matlab.
if n=100
i=(1,.....,n)
0 Comments
Accepted Answer
More Answers (1)
Bryant Pong
on 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 Comments
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!