Effacer les filtres
Effacer les filtres

Function with one input and one output

9 vues (au cours des 30 derniers jours)
Amanda
Amanda le 26 Oct 2022
Réponse apportée : Sarthak le 15 Juin 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 commentaire
Steven Lord
Steven Lord le 26 Oct 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.

Connectez-vous pour commenter.

Réponses (1)

Sarthak
Sarthak le 15 Juin 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 :

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by