Guest User

Untitled

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