Solving equations using solve() function
14 views (last 30 days)
Show older comments
AAKASH R AAKASH R
on 5 Oct 2017
Commented: AAKASH R AAKASH R
on 5 Oct 2017
The code below gives an empty Ans although it is clear that the solution is 0,0,0,0.
syms a b c d
res = solve(a+b,a+b+c,a+b+c+d,a)
Hence why do we get an empty answer?
0 Comments
Accepted Answer
Torsten
on 5 Oct 2017
sol = solve([a+b==0,a+b+c==0,a+b+c+d==0,a==0],[a b c d]);
sol.a
sol.b
sol.c
sol.d
Best wishes
Torsten.
More Answers (0)
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!