Substituting variable into equation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rakesh Jain
el 11 de Feb. de 2017
Comentada: Walter Roberson
el 11 de Feb. de 2017
I am attaching a snippet of the program which I am doing.
yt = ilaplace(y_syms)
syms t
yred = ilaplace(r)
syms t A1
eqn = limit(yt,t,inf)==limit(yred,t,inf);
A1 = solve(eqn,A1)
error = yt - yred
I calculated the value of A1 using solve command as above. My error is a function of A1 and t. But the value of A1 calculated using 'solve' is not getting substituted automatically into error equation. What should be the way out.
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Feb. de 2017
subs(error, sym('A1'), A1)
Note: please do not use "error" as the name of a variable. "error" is a key MATLAB routine to control handling of error conditions; https://www.mathworks.com/help/matlab/ref/error.html
2 comentarios
Walter Roberson
el 11 de Feb. de 2017
I do not know. I have not encountered one myself, but since there are over 4 billion web sites, I have not had time to check.
Más respuestas (0)
Ver también
Categorías
Más información sobre Model Predictive Control Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!