How to use variable?

2 views (last 30 days)
Ivor Horton
Ivor Horton on 15 Jun 2020
Commented: madhan ravi on 15 Jun 2020
If I run
det([1 2;3 4])
Matlab gives the result -2.
I want to calculate
det([a b;c d])
and how can I get the result
ad - bc

Accepted Answer

David Hill
David Hill on 15 Jun 2020
syms a b c d;
det([a b;c d]);
  1 Comment
madhan ravi
madhan ravi on 15 Jun 2020
First line doesn’t output anything.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!