How to convert matrix equations to system equation of element in row of matrix in matlab live script

16 views (last 30 days)
convert to
a+a = 1
2*b+d =2
c+b=3
2*d+3*c =4

Accepted Answer

madhan ravi
madhan ravi on 4 Jul 2020
syms a b % example
A = [a b; b a].' % those matrices should be transposed
B = [a b; b a].'
C = [1:2; 3:4].'
A(:) + B(:) == C(:)

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!