Clear Filters
Clear Filters

Solving equations that are first parametrically solved

3 views (last 30 days)
Hi All
if I solve a set of equations first parametrically and I end in something like : C = a^2 + 2 * b +1/R
and then I want to put numbers in a and b and R and get a result for C , how do I do that ?
I mean the code is initiated with
syms a , b , R

Accepted Answer

Mischa Kim
Mischa Kim on 7 Dec 2014
Farzad, you want to use the subs command
syms a b R
C = a^2 + 2 * b + 1/R;
C_num = subs(C,{a,b,R},{1,2,3})
C_num =
16/3

More Answers (0)

Community Treasure Hunt

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

Start Hunting!