how can I choose values from a vector ascendingly and concequently ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
omar th
el 15 de Jul. de 2022
Comentada: Voss
el 15 de Jul. de 2022
X = [-28.6479 -27.5 -18.33 -13.75 -11 -9.16 -7.85 -6.87 -6.11 -5.5 5.5 6.11 6.87 7.85 9.16 11 13.75 18.33 27.5 28.6479]
0 comentarios
Respuesta aceptada
Voss
el 15 de Jul. de 2022
X = [-28.6479 -27.5 -18.33 -13.75 -11 -9.16 -7.85 -6.87 -6.11 -5.5 5.5 6.11 6.87 7.85 9.16 11 13.75 18.33 27.5 28.6479]
% choose three consecutive elements from X, starting with element 5:
choice = X(5:7)
2 comentarios
Voss
el 15 de Jul. de 2022
X = [-28.6479 -27.5 -18.33 -13.75 -11 -9.16 -7.85 -6.87 -6.11 -5.5 5.5 6.11 6.87 7.85 9.16 11 13.75 18.33 27.5 28.6479]
for current_index = 1:numel(X)
choice = X(current_index)
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!