Borrar filtros
Borrar filtros

Function with one input and one output

9 visualizaciones (últimos 30 días)
Amanda
Amanda el 26 de Oct. de 2022
Respondida: Sarthak el 15 de Jun. de 2023
I need help writing a function that has one input of number_of_steps and one out put of steps_made_successfully. I am trying to get a robot to take a number_of_steps and keep track of the the number of steps it takes before it hits a wall. therefore returning the steps_made_successfully.
  1 comentario
Steven Lord
Steven Lord el 26 de Oct. de 2022
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.

Iniciar sesión para comentar.

Respuestas (1)

Sarthak
Sarthak el 15 de Jun. de 2023
Hello Amanda,
For writing a function with one input and one output, you can use the following way :
function steps_made_successfully = functionName(number_of_steps)
% Code Logic
end
For more examples, refer :

Categorías

Más información sobre Matrix Indexing 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