Filter löschen
Filter löschen

Function with one input and one output

9 Ansichten (letzte 30 Tage)
Amanda
Amanda am 26 Okt. 2022
Beantwortet: Sarthak am 15 Jun. 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 Kommentar
Steven Lord
Steven Lord am 26 Okt. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sarthak
Sarthak am 15 Jun. 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 :

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by