Mercurial > repos > public > sbplib
view spyh.m @ 970:23d9ca6755be feature/poroelastic
Add getBoundaryQuadrature in Elastic2dVariable. Rename get_boundary_operator -> getBoundaryOperator. Add operators in getBoundaryOperator, with full size so that they work with multiblock.DiffOp.getBoundaryOperator.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Tue, 25 Dec 2018 07:23:38 +0100 |
parents | 12db86a8ec7b |
children |
line wrap: on
line source
% spyh mimics the built in spy but returns a handle which allows modifying the plot. function h = spyh(A) [n,m] = size(A); [I,J] = find(A); if ~isempty(J) h = plot(J,I); h.LineStyle = 'none'; h.Marker = '.'; h.MarkerSize = 14; else h = []; end a = gca; xlim([0 m+1]); ylim([0 n+1]); axis square a.YDir = 'reverse'; end