Notation with DSOLVE is unclear

2 次查看(过去 30 天)
I am solving this differential equation
syms y(x)
dsolve(diff(y) == 4/100*y)
that gives
C4*exp(x/25)
What does the C4 means? I know there should be a constant representing the degree of freedom, but I noticed that if I change the coefficient in my equation the C. changes.
I am confused, it's just a way of indexing different constants, or is that a multiplier(the * is missing though)?

采纳的回答

Walter Roberson
Walter Roberson 2013-5-15
It is just a way of indexing different constants. Also, if you run the same equation through twice you will probably get out two different constants, which is done so that you do not accidentally tie the equations together. For example,
A = dsolve(eqn1);
B = dsolve(eqn1);
C = [A, B];
Then the two parts of C need to have different constants (after all, they might represent different initial conditions), so dsolve() will emit different C* symbols.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Equation Solving 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by