Unable to find explicit solution for "solve"
이전 댓글 표시
i have a problem in my code. Until now it worked very well, but since i changed some input parameters for specific simulation scenarios i get this error message. As i wasn't able to apply the given soultions of similar problems, i ask for your assistance.
function estimate_p = Estimate_p(x)
%Funktion zur Ermittlung des optimalen Prämienniveaus
% gegeben dass alle anderen Parameter fix sind
syms a;
syms p;
estimate_p=double(solve(subs(diff(DA(a,x(7),x(9)),a),a,x(2))-subs(diff(UAS(x(1),a,p,x(4),x(6),x(10)),a),a,x(2)),p));
clear a;
clear p;
end
댓글 수: 2
Walter Roberson
2019년 11월 23일
We need the function DA, and the function UAS, and we need an example x(1) through x(10)
Patrick Reinwald
2019년 11월 24일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Numeric Solvers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!