'This statement is incomplete' for a function with enough parameters

3 ビュー (過去 30 日間)
Yash Bhatia
Yash Bhatia 2022 年 11 月 30 日
編集済み: Voss 2022 年 12 月 1 日
I have a function gen_a with the following header:
function predictor = gen_a (P, S, B, func1, func2, func3)
func1, func2, and func3 are all character vectors, corresponding to a lookup table of functions.
However, when I try to run the following line in my driver code:
func1 = strcat('f', int2str(0));
gen_a (P1, S1, B1, func1, 'f1', 'f0')
I get the error in the image. Is there something I am missing in this function call?

採用された回答

Voss
Voss 2022 年 11 月 30 日
移動済み: Voss 2022 年 11 月 30 日
This error can happen when there is a syntax error within the function itself (not just the line defining the function signature/header). Can you share the complete function gen_a?
  2 件のコメント
Yash Bhatia
Yash Bhatia 2022 年 11 月 30 日
移動済み: Voss 2022 年 11 月 30 日
Thanks for that, I didn't know that this would give an error for the function itself too. I debugged it, and it turned out I had a missing symbol in a generated eval expression. Thank you for your help!
Voss
Voss 2022 年 11 月 30 日
編集済み: Voss 2022 年 12 月 1 日
You're welcome!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by