CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: blessed87

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    6,248

    Re: maximum, minimum and average of a matrix?

    thanks. but if i implement it this way, it gives lots of errors.
  2. Replies
    4
    Views
    5,065

    Re: maximum, minimum and average of a matrix?

    how? can you explain a little?
  3. Replies
    1
    Views
    550

    Matrix generation in C++

    0
    down vote

    I have the following code:

    for (int w=0; w<10; w++)
    {
    //some lines of code
    unsigned long num = x.to_ulong();
    cout << "Decimal form is: " << num << endl;
  4. Replies
    0
    Views
    412

    Matrix generation in C++

    0
    down vote

    I have the following code:

    for (int w=0; w<10; w++)
    {
    //some lines of code
    unsigned long num = x.to_ulong();
    cout << "Decimal form is: " << num << endl;
  5. Replies
    7
    Views
    6,248

    Re: maximum, minimum and average of a matrix?

    what? how?
  6. Replies
    7
    Views
    6,248

    maximum, minimum and average of a matrix?

    std::vector<std::vector<unsigned long> > matrix(15); // 15 rows
    typedef std::vector<std::vector<unsigned long> >::iterator it_type;

    it_type row = matrix.begin();

    for (int w=0;w<10;w++)
    {...
  7. Replies
    4
    Views
    5,065

    maximum, minimum and average of a matrix?

    std::vector<std::vector<unsigned long> > matrix(15); // 15 rows
    typedef std::vector<std::vector<unsigned long> >::iterator it_type;

    it_type row = matrix.begin();

    for (int w=0;w<10;w++)
    {...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured