Mercurial > repos > public > sbplib
view logsurf.m @ 969:adae8063ea2f feature/poroelastic
Remove silly getBoundaryOperator* methods in multiblock.DiffOp and make the getBoundaryOperator and getBoundaryQuadrature methods use the scheme.getBoundaryOperator/Quadrature methods instead of properties.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Tue, 25 Dec 2018 07:21:19 +0100 |
parents | ac1fc1c9e129 |
children |
line wrap: on
line source
function [srfHandle, cbHandle] = logsurf(X,Y,Z, lim) absLogZ = log10(abs(Z)); srfHandle = surf(X,Y,absLogZ); cbHandle = colorbar(); colormap(hot(256)); ah = gca(); ah.CLim = lim; oldTickLabels = cbHandle.TickLabels; newTickLabels = {}; for i = 1:length(oldTickLabels) newTickLabels{i} = sprintf('10^{%s}',oldTickLabels{i}); end cbHandle.TickLabels = newTickLabels; end