00001 //=========================================================================== 00002 // GoTools - SINTEF Geometry Tools version 1.1 00003 // 00004 // GoTools module: parametrization 00005 // 00006 // Copyright (C) 2000-2005 SINTEF ICT, Applied Mathematics, Norway. 00007 // 00008 // This program is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU General Public License 00010 // as published by the Free Software Foundation version 2 of the License. 00011 // 00012 // This program is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with this program; if not, write to the Free Software 00019 // Foundation, Inc., 00020 // 59 Temple Place - Suite 330, 00021 // Boston, MA 02111-1307, USA. 00022 // 00023 // Contact information: E-mail: tor.dokken@sintef.no 00024 // SINTEF ICT, Department of Applied Mathematics, 00025 // P.O. Box 124 Blindern, 00026 // 0314 Oslo, Norway. 00027 // 00028 // Other licenses are also available for this software, notably licenses 00029 // for: 00030 // - Building commercial software. 00031 // - Building software whose source code you wish to keep private. 00032 //=========================================================================== 00033 #include "PrVec.h" 00034 00035 //----------------------------------------------------------------------------- 00036 void PrVec::redim(int n, double fill_with) 00037 //----------------------------------------------------------------------------- 00038 { 00039 a_.resize(n, fill_with); 00040 } 00041 00042 //----------------------------------------------------------------------------- 00043 double PrVec::inner(const PrVec& x) 00044 //----------------------------------------------------------------------------- 00045 { 00046 double sum = 0.0; 00047 for(int i=0; i<size(); i++) 00048 { 00049 sum += (*this)(i) * x(i); 00050 } 00051 return sum; 00052 } 00053 00054 //----------------------------------------------------------------------------- 00055 void PrVec::print(std::ostream& os) 00056 //----------------------------------------------------------------------------- 00057 { 00058 for(int i=0; i<size(); i++) 00059 { 00060 os << (*this)(i) << " "; 00061 00062 } 00063 os << std::endl; 00064 } 00065 00066 //----------------------------------------------------------------------------- 00067 void PrVec::read(std::istream& is) 00068 //----------------------------------------------------------------------------- 00069 { 00070 for(int i=0; i<size(); i++) { 00071 is >> (*this)(i); 00072 } 00073 } 00074