functions within the script

2 ビュー (過去 30 日間)
Rashid Hussein
Rashid Hussein 2021 年 6 月 27 日
コメント済み: Rashid Hussein 2021 年 6 月 27 日
i wanted to call the same function several times but with different variables eachtime in the same script
for example
function [a]=myfunction(r)
a=10*r
end
a=myfunction(5)
a=myfunction(7)
i want when run the script to have all results at once but it shows this error message
Error: File: myhot.m Line: 5 Column: 2
This statement is not inside any function.
(It follows the END that terminates the
definition of the function "myfunction".)
thankyou
  2 件のコメント
Akshit Bagde
Akshit Bagde 2021 年 6 月 27 日
If you are writing a script file which contains both commands and function definitions, the functions must be placed at the end of the file. Read about it here - Declare Functions in MATLAB.
Rashid Hussein
Rashid Hussein 2021 年 6 月 27 日
Thank you sir for answering But I want to call the function in the script not in the command line , so when I run the script it will give me the results If it is possible, can you demonstrate the above example given by me ?

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

採用された回答

Stephan
Stephan 2021 年 6 月 27 日
編集済み: Stephan 2021 年 6 月 27 日
a1=myfunction(5)
a2=myfunction(7)
function a=myfunction(r)
a=10*r
end
  2 件のコメント
Star Strider
Star Strider 2021 年 6 月 27 日
Relevant documentation: Create Functions in Files
Rashid Hussein
Rashid Hussein 2021 年 6 月 27 日
Thank you sir for your answer , appreciate your efforts

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 6 月 27 日
Put the script first, not after the function. And make sure the function ends with an "end" statement.
  1 件のコメント
Rashid Hussein
Rashid Hussein 2021 年 6 月 27 日
Thank you sir for your answer, deeply appreciated

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

カテゴリ

Help Center および File ExchangeTime Series Collections についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by