Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
how to plot non-quadratic function
조회 수: 1 (최근 30일)
이전 댓글 표시
x0=[2,0];
fun=@(x) x(1)^3-16*x(1)+2*x(2)-3*x(2)^2 %this is my objective function
x = fminsearch(fun,x0)
contour(fun,[-5 5])
When i plot this function i'm getting this error "Input arguments must be numeric or objects which can be converted to double."
Can anyone tell, what is the problem
댓글 수: 2
Rik
2019년 9월 29일
What do you mean with a contour if you only have a function of one variable? It usually only makes sense to talk about contours if you have a function of two variables.
You error occurs because ezcontour expects a function with two inputs.
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!