Effacer les filtres
Effacer les filtres

Can't susbsitute a variable that is defined

3 vues (au cours des 30 derniers jours)
Jacques Barsimantov
Jacques Barsimantov le 17 Fév 2023
I have solved a system of ODEs using dsolve. They create a set of symbolic variables inside the solutions when integrating as expected. When I check to see the name of these integrationg constants one of these is called "C1". Now, I want to substitue using subs that integration variable for a number.
symvar(Vb_sol) %Check the name of the constants inside my ODE solution
V_sub = subs(Vb_sol,C1,1) %Replace C1 (integration constant) by 1
However, when I try do do the substitution I get the "Undefined function or variable 'C1'" error.
I have attached the variable "Vb_sol", which is a function of C1, and an example script trying to do the substituion.
Thank you

Réponse acceptée

Paul
Paul le 17 Fév 2023
Modifié(e) : Paul le 17 Fév 2023
Do
syms C1
before calling subs.
syms y(t) a
eqn = diff(y,t) == a*y;
S = dsolve(eqn)
S = 
syms C1
subs(S,C1,2)
ans = 

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by