フィルターのクリア

Function with one input and one output

9 ビュー (過去 30 日間)
Amanda
Amanda 2022 年 10 月 26 日
回答済み: Sarthak 2023 年 6 月 15 日
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 件のコメント
Steven Lord
Steven Lord 2022 年 10 月 26 日
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.

サインインしてコメントする。

回答 (1 件)

Sarthak
Sarthak 2023 年 6 月 15 日
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 :

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by