Create a vector with a user inputted increment.

6 visualizaciones (últimos 30 días)
furcifer
furcifer el 19 de Nov. de 2018
Comentada: madhan ravi el 19 de Nov. de 2018
Is there an operator like linspace that creates a vector based on a chosen increment? I have to create an array based on 3 inputs, min,max and increment. Say 0,10,3 - I need [0,3,6,9] and for 10,100,37 I need [10,47,84].

Respuesta aceptada

madhan ravi
madhan ravi el 19 de Nov. de 2018
minimum=input('minimum= ')
maximum=input('maximum= ')
increment=input('increment= ')
vector=minimum:increment:maximum;
  2 comentarios
furcifer
furcifer el 19 de Nov. de 2018
thanks ravi. I think it's about time I get some sleep, I can't remember anything.
madhan ravi
madhan ravi el 19 de Nov. de 2018
Anytime :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by