Search:

Type: Posts; User: Avraham

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    2,118

    its working!!! thank you guys!

    its working!!! thank you guys!
  2. Replies
    6
    Views
    2,118

    #include "matrix.cpp" #include ...

    #include "matrix.cpp"
    #include <iostream>
    #include <fstream>

    using namespace std;

    int main() {
    Matrix<int> matrix2(3,3);
    matrix2.fill();
    matrix2.list();
  3. Replies
    6
    Views
    2,118

    unfortunately when i write() it, then fill the...

    unfortunately when i write() it, then fill the matrix with zeros, then load it back using read() and then list it out again, its full of zeroes..
  4. Replies
    6
    Views
    2,118

    skipping whitespace with istream

    hello,

    i have a matrix, and i need to save its contents to a file, and then load it back from the file.
    i have the following code:



    template<class T>
    void Matrix<T>::write(ostream& os)...
  5. Replies
    1
    Views
    2,344

    matrix class without STL

    hi

    i'm trying to write a templated class that is for calculating a determinant of an n by n matrix, but i go stuck. it is important to not use the STL library at all.. i getting an error in my...
Results 1 to 5 of 5