Error in creating a function

1 回表示 (過去 30 日間)
GEORGIOS BEKAS
GEORGIOS BEKAS 2018 年 8 月 2 日
コメント済み: GEORGIOS BEKAS 2018 年 8 月 2 日
What's wrong in the following expression?
ObjectiveFunction = @x() sim(net, x')
  2 件のコメント
Stephen23
Stephen23 2018 年 8 月 2 日
@x() sim(net, x')
^^^
should be:
@(x) sim(net, x')
^^^
GEORGIOS BEKAS
GEORGIOS BEKAS 2018 年 8 月 2 日
thanks.

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

採用された回答

madhan ravi
madhan ravi 2018 年 8 月 2 日
編集済み: madhan ravi 2018 年 8 月 2 日
hi try this,
ObjectiveFunction = @(x) sim(net, x')
REASON: FUNCTION HANDLE SHOULD BE DETERMINED INSIDE PARENTHESES.

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by