// // matrixtest.cc // // Copyright (C) 1996 Limit Point Systems, Inc. // // Author: Curtis Janssen // Maintainer: LPS // // This file is part of the SC Toolkit. // // The SC Toolkit is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // // The SC Toolkit is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with the SC Toolkit; see the file COPYING.LIB. If not, write to // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // The U.S. Government is granted a limited license as per AL 91-7. // #include #include #include #include #include #include using namespace std; using namespace sc; class Prod3: public SCElementOp3 { private: public: void process(SCMatrixBlockIter& i1, SCMatrixBlockIter& i2, SCMatrixBlockIter& i3) { for (i1.reset(),i2.reset(),i3.reset(); i1; ++i1,++i2,++i3) { i1.set(i2.get()*i3.get()); } } int has_side_effects() { return 1; } }; void randomize(RefSCMatrix&m) { for (int i=0; i kit, Ref keyval, RefSCDimension d1,RefSCDimension d2,RefSCDimension d3, bool have_svd) { if (d1.null()) d1 << keyval->describedclassvalue("d1"); if (d2.null()) d2 << keyval->describedclassvalue("d2"); if (d3.null()) d3 << keyval->describedclassvalue("d3"); d1.print(); d2.print(); d3.print(); tim_enter("matrixtest"); int i; int j; // seed the random number generator srand48(0); RefSCMatrix a(d1,d2,kit); RefSCMatrix a2(d1,d2,kit); RefSCMatrix a3(d1,d2,kit); RefSCMatrix b(d2,d3,kit); RefSCMatrix c(d1,d3,kit); cout << "a(" << a.nrow() << "," << a.ncol() << ")\n"; a.assign(7.0); a2.assign(5.0); a3.assign(3.0); Ref op3 = new Prod3; a.element_op(op3,a2,a3); a.print("a"); a2.print("a2"); a3.print("a3"); ///////////////////////////////// RefSymmSCMatrix sa(d3,kit); RefSymmSCMatrix sa2(d3,kit); RefSymmSCMatrix sa3(d3,kit); sa.assign(7.0); sa2.assign(5.0); sa3.assign(3.0); sa.element_op(op3,sa2,sa3); sa.print("sa"); sa2.print("sa2"); sa3.print("sa3"); ///////////////////////////////// RefDiagSCMatrix da(d3,kit); RefDiagSCMatrix da2(d3,kit); RefDiagSCMatrix da3(d3,kit); da.assign(7.0); da2.assign(5.0); da3.assign(3.0); da.element_op(op3,da2,da3); da.print("da"); da2.print("da2"); da3.print("da3"); ///////////////////////////////// RefSCVector vva(d3,kit); RefSCVector vva2(d3,kit); RefSCVector vva3(d3,kit); vva.assign(7.0); vva2.assign(5.0); vva3.assign(3.0); vva.element_op(op3,vva2,vva3); vva.print("vva"); vva2.print("vva2"); vva3.print("vva3"); //////////////////////////////// a.assign(0.0); b.assign(1.0); c.assign(2.0); a.print("a"); b.print("b"); c.print("c"); tim_enter("mxm"); RefSCMatrix d = c * b.t(); tim_exit("mxm"); d.print("d"); RefSCDimension d4; d4 << keyval->describedclassvalue("d4"); int nd4 = d4->n(); cout << "n4 = " << nd4 << endl; d4.print(); RefSCMatrix aaa(d4,d4,kit); RefSCMatrix bbb(d4,d4,kit); aaa.assign(1.0); bbb.assign(2.0); tim_enter("mxm2"); RefSCMatrix ccc = aaa*bbb; tim_exit("mxm2"); d.print("d later"); RefSymmSCMatrix e(d3,kit); e.assign(1.0); e.print("e"); e.eigvals().print("e.eigvals()"); e.eigvecs().print("e.eigvecs()"); RefSymmSCMatrix f(d3,kit); for (i=0; ij) g(i,j) = i + sqrt((double)j); else g(i,j) = j + sqrt((double)i); } } g.print("g"); g.i().print("g.i()"); (g * g.i()).print("g * g.i()"); if (have_svd) { g.gi().print("g.gi()"); (g * g.gi()).print("g * g.gi()"); (g.gi() * g).print("g.gi() * g"); } RefSCVector v(d3,kit); for (i=0; i