aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJavaExtension.cshtml
blob: 8498f331134da3c8ae778b24b54a08749f0aac05 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.twine.tango.dal.entities;

import com.raizlabs.android.dbflow.annotation.Table;
import com.twine.tango.dal.TangoDB;

@@Table(name = "@(Model.TableName)", database = TangoDB.class, cachingEnabled = true)
public class @(Model.Name) extends @(Model.Extends)
{

    
}
s="p">(5,5); MatrixXd A = X * X.transpose(); X = MatrixXd::Random(5,5); MatrixXd B = X * X.transpose(); GeneralizedSelfAdjointEigenSolver<MatrixXd> es(A,B,EigenvaluesOnly); cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl; es.compute(B,A,false); cout << "The eigenvalues of the pencil (B,A) are:" << endl << es.eigenvalues() << endl;