Mercurial > repos > public > sbplib
view rowVector.m @ 958:72cd29107a9a feature/poroelastic
Temporary changes in multiblock.DiffOp. Change traction operators in Elastic2dvariable to be true boundary operators. But adjoint FD conv test fails for dirichlet BC so need to debug!
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 05 Dec 2018 18:58:10 -0800 |
parents | 48b6fb693025 |
children |
line wrap: on
line source
function r = rowVector(v) if size(v,1) == 1 r = v elseif size(v,2) == 1 r = v'; else error('v is not a matrix'); end end