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

 Akzeptierte Antwort

David Hill
David Hill am 15 Jun. 2020

0 Stimmen

syms a b c d;
det([a b;c d]);

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by