フィルターのクリア

How to limit variables in input function?

1 回表示 (過去 30 日間)
Triveni
Triveni 2022 年 5 月 23 日
コメント済み: Triveni 2022 年 6 月 4 日
I have a function
[P_max1(j), ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~] = tcfun1(1,P_min11 (j), P_max11(j), T, 1);
It perfectly runs.
When I use
[P_max1(j), ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~] = tcfun2(1,P_min11 (j), T, 1);
It perfectly runs.
but when i use
[P_max1(j), ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~, ~] = tcfun3(1,P_min11 (j), ~, T, 1);
It gets error.
please help me.

採用された回答

Matt J
Matt J 2022 年 5 月 23 日
It does not make sense to have a tilde as an input argument in a function call. Perhaps you meant,
tcfun3(1,P_min11 (j), T, 1);
  5 件のコメント
Walter Roberson
Walter Roberson 2022 年 5 月 24 日
MATLAB has no way to indicate "missing parameter", with the exception that if a parameter and all following parameters are to be missing then you can leave them all out and the code can use nargin() to tell.
In any case where a missing parameter is followed by a non-missing parameter, the best you can do is create a new class such as MISSING and pass an object of that class, and then have the code use isa() to detect that a parameter was passed but the parameter was that kind of object. This would require that the code be specifically written for your class. Unlike Python, MATLAB does not offer any MISSING indicator built-in
Triveni
Triveni 2022 年 6 月 4 日
Yes, when i sent [] as empty matrix. and add statement within the function
if isempty(idx)
clear idx
end
perfectly work as i want.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Identification についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by