You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
214 B

4 years ago
  1. #include "GMath.h"
  2. int main() {
  3. float f1[] = {
  4. 1.0f, 4.0f, -8.0,
  5. 0.0f, 2.0f, 9.0,
  6. 0.0f, 6.0f, 1.0f
  7. };
  8. GMatrix M1(3,3, f1);
  9. cout << M1 << endl;
  10. cout << Det(M1) << endl;
  11. return 0;
  12. }