How to get the ceofficients of a expression derived by ODE or integral ? For exampli,C1 and C2 in u

조회 수: 2 (최근 30일)
syms rho a b E omega u(r) mu
sigma_r=E/(1-mu^2)*(diff(u,r)+mu*u/r);
sigma_theta=E/(1-mu^2)*(mu*diff(u,r)+u/r);
u=dsolve(diff(r*sigma_r,r,1)-sigma_theta+rho*omega^2*r^2==0)
u = 

답변 (1개)

James Tursa
James Tursa 2021년 8월 25일
Typically these would be obtained by combining the solution with initial values for u. Do you have initial values?
  댓글 수: 1
Guoyao.Li
Guoyao.Li 2021년 8월 26일
편집: Guoyao.Li 2021년 8월 26일
Thanks!!!
I know that the specific solution for u needs initial conditions,but I want to extract the ceofficients of general solution,which are C1 and C2.And then using ''subs'' in MATLAB to subsitute C1 and C2 with specific value.However,it fails if I directly use syntax "u=subs(u,[C1 C2],[1 2])".
I have tried to use "children" syntax in MATLAB to extract C1 and C2 in u and it succeeds, but I think it's a little tedious.Is there any simple way to do it?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by