Changeset 348

Show
Ignore:
Timestamp:
05/27/09 21:37:51 (15 years ago)
Author:
smidl
Message:

compilation fixes

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • bdm/estim/libKF.cpp

    r332 r348  
    173173        dimy = phxu0->dimension(); 
    174174        dimu = pfxu0->_dimu(); 
    175         // set size of mu - just for constant terms of A and C  
    176         _mu=zeros(dimx); 
     175        // if mu is not set, set it to zeros, just for constant terms of A and C  
     176        if (_mu.length()!=dimx) _mu=zeros(dimx); 
    177177        A=zeros(dimx,dimx); 
    178178        C=zeros(dimy,dimx); 
  • library/mex/bm_note.sh

    r341 r348  
    11#!/bin/sh 
    2 mex -l itpp -l bdm -l blas -l lapack-Wfatal-errors  -I/home/smidl/bin/matlab2008a/extern/include -I/home/smidl/work/git/mixpp/bdm  -L ../../bdm/ -L /usr/lib64 $1  
     2mex -l itpp -l bdm -l blas -l lapack -I/home/smidl/bin/matlab2008a/extern/include -I/home/smidl/work/git/mixpp/bdm -I/home/smidl/work/git/mixpp/system/linux -L/home/smidl/work/git/mixpp/bdm -L/home/smidl/work/git/mixpp/system/linux/itpp/.libs -L /usr/lib64 $1  
    33#mxestimator.cpp 
    44#mex -l bdm -I ../../bdm/ -I /home/smidl/soft/matlab/matlab/extern/include -L ../../bdm/ linefit2.cpp 
  • library/mex/mexparse.h

    r345 r348  
    1515                //mexCallMATLAB(0, NULL, 1, (mxArray **) &mxarray, "dump"); 
    1616                fillGroup(setting, mxarray); 
     17                setAutoConvert(true); 
    1718        } 
    1819