Mercurial > repos > public > sbplib
view +rv/+diffops/constructFluxDiffOp.m @ 1188:7173b6fd4063 feature/rv
Rename class property grid to g, to avoid confusion with grid package
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 08 Jul 2019 14:50:19 +0200 |
parents | 65a577db5ca0 |
children |
line wrap: on
line source
function [D, diffOp] = constructFluxDiffOp(scheme, g, order, schemeParams, opSet, BCs) diffOp = scheme(g, order, schemeParams{:}, opSet); if ~isa(diffOp.D, 'function_handle') D = @(v) diffOp.D*v; else D = diffOp.D; end end