필터 지우기
필터 지우기

How to solve a differential equation and the plug a number in for the resulting differential equation

조회 수: 7 (최근 30일)
I can do diff((1 + 5 * x^2 - 2 * x^3 + 8 * x^4) ^(1/8))), but I don't have an idea what to after

답변 (1개)

David Goodmanson
David Goodmanson 2020년 2월 14일
Hi Benjamin,
syms x
d = diff((1 + 5 * x^2 - 2 * x^3 + 8 * x^4) ^(1/8))
x0 = 8.8
val = double(subs(d,x0))
val =
0.2187
% this shows part of what is going on
dx0 = subs(d,x0)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by