필터 지우기
필터 지우기

Undefined function 'symsum' for input arguments of type 'double'.

조회 수: 1 (최근 30일)
bus14
bus14 2019년 5월 8일
댓글: Walter Roberson 2019년 5월 8일
Hi, I am getting the error
Undefined function 'symsum' for input arguments of type 'double'.
Error in LoopsumQ2 (line 40)
T=symsum(Q,k,1,200)
I do not understand what this means as I am trying to sum this objective function.
The values of l,q,s,pk(k),y(k),z(k) are all computed already before this for loop takes place.
Is there something wron in my code?
syms k
for k=1:1:200;
Q=pk(k)*((l-q).'*z(k)-s.'*y(k));
T=symsum(Q,k,1,200)
end
  댓글 수: 7
bus14
bus14 2019년 5월 8일
편집: bus14 2019년 5월 8일
l=1 q=11 s=2
this is is simplied version of the larger problem
Walter Roberson
Walter Roberson 2019년 5월 8일
If those are constant then the .' operators have no reason to be there so I have to assume that they are vector or 2D array in the real problem. The solution if they are constant is very simple but with them being multivalued I need to think carefully about putting the expression together.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by