Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Rational A[4][4] = { // A[wiersze][kolumny]
- { 1, 2, 1, 5 },
- { 2, 1, 2, 3 },
- { 4, -2, -3, 3 },
- { 5, 3, 4, 2 },
- };
- Rational *As[4] = { A[0], A[1], A[2], A[3] }; // To też trzeba dostosowywać w zależności od tego ile jest wierszy.
- rref(As, 4, 4); // rref(As, wiersze, kolumny);
Advertisement
Add Comment
Please, Sign In to add comment