Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Trying to solve for x

조회 수: 1 (최근 30일)
Christina Kersten
Christina Kersten 2019년 4월 13일
마감: MATLAB Answer Bot 2021년 8월 20일
So basically I have this equation, and I'm trying to find where the second derivative of it equals 0, but I keep getting that x = 0 and I know it's not. What am I doing wrong?
syms x % Defining unknown variable to solve for
eqn = 1/(7.221*10^(-9)*x^3 - 2.353E-5*x^2 - 2.094E-3*x + 132.747); % Equation taken from polyfit
ddc = diff(diff(eqn)) == 0;
sol = solve(ddc,x);
compliance = double(sol);

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by