how to program given formula
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Avenger2020
el 7 de Nov. de 2020
Editada: Avenger2020
el 7 de Nov. de 2020
Neeed help on how to write this formula in matlab.
if n=100
i=(1,.....,n)
0 comentarios
Respuesta aceptada
Más respuestas (1)
Bryant Pong
el 7 de Nov. de 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 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!