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.

17 lines
214 B

#include "GMath.h"
int main() {
float f1[] = {
1.0f, 4.0f, -8.0,
0.0f, 2.0f, 9.0,
0.0f, 6.0f, 1.0f
};
GMatrix M1(3,3, f1);
cout << M1 << endl;
cout << Det(M1) << endl;
return 0;
}