Changeset 37012be in mmcs


Ignore:
Timestamp:
Nov 3, 2016, 4:33:15 PM (8 years ago)
Author:
rudmanmrrod <rudman22@…>
Branches:
master
Children:
b9d5f5e
Parents:
d460865
Message:

Invertido el orden de la operacion a0-an -> an-a0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mainwindow.C

    rd460865 r37012be  
    62046204        }
    62056205    }
    6206     A0 -= An;
     6206    A0 = An - A0;
    62076207    QTableWidget *MAN = findChild<QTableWidget *>("MatrizAn");
    62086208    QTableWidget *tw = new QTableWidget;
     
    62506250{
    62516251    MatrixXd ident = MatrixXd::Identity(A0.rows(),A0.cols());
    6252     MatrixXd aux = M1*(A0-An);
     6252    MatrixXd aux = M1*(An-A0);
    62536253    M2 = ident+aux;
    62546254    int cantidad = diccCuentasEndogenas.count()-2;
Note: See TracChangeset for help on using the changeset viewer.