Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

ExtendedVMatrix.cc

Go to the documentation of this file.
00001 // -*- C++ -*- 00002 00003 // PLearn (A C++ Machine Learning Library) 00004 // Copyright (C) 1998 Pascal Vincent 00005 // Copyright (C) 1999-2001 Pascal Vincent, Yoshua Bengio, Rejean Ducharme and University of Montreal 00006 // Copyright (C) 2002 Pascal Vincent, Julien Keable, Xavier Saint-Mleux 00007 // 00008 // Redistribution and use in source and binary forms, with or without 00009 // modification, are permitted provided that the following conditions are met: 00010 // 00011 // 1. Redistributions of source code must retain the above copyright 00012 // notice, this list of conditions and the following disclaimer. 00013 // 00014 // 2. Redistributions in binary form must reproduce the above copyright 00015 // notice, this list of conditions and the following disclaimer in the 00016 // documentation and/or other materials provided with the distribution. 00017 // 00018 // 3. The name of the authors may not be used to endorse or promote 00019 // products derived from this software without specific prior written 00020 // permission. 00021 // 00022 // THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR 00023 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00024 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 00025 // NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00026 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 00027 // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00028 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00029 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00030 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00031 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00032 // 00033 // This file is part of the PLearn library. For more information on the PLearn 00034 // library, go to the PLearn Web site at www.plearn.org 00035 00036 00037 /* ******************************************************* 00038 * $Id: ExtendedVMatrix.cc,v 1.6 2004/07/07 17:30:48 tihocan Exp $ 00039 ******************************************************* */ 00040 00041 #include "ExtendedVMatrix.h" 00042 00043 namespace PLearn { 00044 using namespace std; 00045 00046 00049 PLEARN_IMPLEMENT_OBJECT(ExtendedVMatrix, "ONE_LINE_DESC", "ONE_LINE_HELP"); 00050 00051 ExtendedVMatrix::ExtendedVMatrix() 00052 : top_extent(0), bottom_extent(0), left_extent(0), right_extent(0), fill_value(0) 00053 { 00054 } 00055 00056 ExtendedVMatrix::ExtendedVMatrix(VMat the_distr, int the_top_extent, int the_bottom_extent, 00057 int the_left_extent, int the_right_extent, 00058 real the_fill_value) 00059 : inherited(the_distr->length()+the_top_extent+the_bottom_extent, 00060 the_distr->width()+the_left_extent+the_right_extent), 00061 distr(the_distr), top_extent(the_top_extent), bottom_extent(the_bottom_extent), 00062 left_extent(the_left_extent), right_extent(the_right_extent), fill_value(the_fill_value) 00063 { 00064 } 00065 00066 void 00067 ExtendedVMatrix::declareOptions(OptionList &ol) 00068 { 00069 declareOption(ol, "distr", &ExtendedVMatrix::distr, OptionBase::buildoption, ""); 00070 declareOption(ol, "top_extent", &ExtendedVMatrix::top_extent, OptionBase::buildoption, ""); 00071 declareOption(ol, "bottom_extent", &ExtendedVMatrix::bottom_extent, OptionBase::buildoption, ""); 00072 declareOption(ol, "left_extent", &ExtendedVMatrix::left_extent, OptionBase::buildoption, ""); 00073 declareOption(ol, "right_extent", &ExtendedVMatrix::right_extent, OptionBase::buildoption, ""); 00074 declareOption(ol, "fill_value", &ExtendedVMatrix::fill_value, OptionBase::buildoption, ""); 00075 inherited::declareOptions(ol); 00076 } 00077 00078 void 00079 ExtendedVMatrix::build() 00080 { 00081 inherited::build(); 00082 build_(); 00083 } 00084 00085 void 00086 ExtendedVMatrix::build_() 00087 { 00088 } 00089 00090 void ExtendedVMatrix::getNewRow(int i, const Vec& v) const 00091 { 00092 #ifdef BOUNDCHECK 00093 if(i<0 || i>=length()) 00094 PLERROR("In ExtendedVMatrix::getNewRow OUT OF BOUNDS"); 00095 if(v.length() != width()) 00096 PLERROR("In ExtendedVMatrix::getNewRow v.length() must be equal to the VMat's width"); 00097 #endif 00098 00099 if(i<top_extent || i>=length()-bottom_extent) 00100 v.fill(fill_value); 00101 else 00102 { 00103 Vec subv = v.subVec(left_extent,distr->width()); 00104 distr->getRow(i-top_extent,subv); 00105 if(left_extent>0) 00106 v.subVec(0,left_extent).fill(fill_value); 00107 if(right_extent>0) 00108 v.subVec(width()-right_extent,right_extent).fill(fill_value); 00109 } 00110 } 00111 00112 } // end of namespcae PLearn

Generated on Tue Aug 17 15:52:44 2004 for PLearn by doxygen 1.3.7