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 CenterFile Exchange에서 Chebyshev에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by