フィルターのクリア

use of "end" mandatory for if statement??

14 ビュー (過去 30 日間)
ABTJ
ABTJ 2020 年 2 月 1 日
回答済み: Walter Roberson 2020 年 2 月 1 日
I want to that if we are using the if statement in our code let say in our function,then is it must to use a separate"end" for if statement other than the end of function??

採用された回答

Walter Roberson
Walter Roberson 2020 年 2 月 1 日
Every if must have a matching end statement. This is always required.
It is not always required that every function has a matching end statement. It is required for functions inside of scripts, and if you use nested functions. However if you have a .m file that starts with function and you do not have nested functions then you can omit the end statement matching every function statement. You cannot mix and match in one file: either do not use any end matching function or else every function must have a matching end. You cannot have some with matching and others without.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

製品


リリース

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by