How to replace equations in symbolic function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anis Frej
el 27 de Mzo. de 2020
Comentada: Anis Frej
el 27 de Mzo. de 2020
Good Morning,
Please I have a function F = 3*a*b
Therefore how can i change (a*b) with a variable 'x' to obtain F = 3*x
Think you.
0 comentarios
Respuesta aceptada
Birdman
el 27 de Mzo. de 2020
By using subs function:
syms a b x
F=3*a*b;
Fnew=subs(F,{a,b},{x,1})
9 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing 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!