Operator '+' is not supported for operands of type 'function_handle'.
조회 수: 6 (최근 30일)
이전 댓글 표시
I have two function handle,such as g=@(x)x+a,f=@(y)y+b
why not do '+'
h=g+f
for example
for t=1:10
h(0)=g;
h=g+t.*f
end
댓글 수: 0
답변 (2개)
埃博拉酱
2023년 6월 26일
Only symbolic functions can be added directly. You may need to refer to Symbolic Math Toolbox.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!