view kroneckerDelta.m @ 1048:adbb80e60b10 feature/getBoundaryOp

Clean up Elastic2dVariable (partially), Utux, and Utux2d.
author Martin Almquist <malmquist@stanford.edu>
date Tue, 22 Jan 2019 11:12:23 -0800
parents b189bc409cdb
children
line wrap: on
line source

function d = kroneckerDelta(i,j)

d = 0;
if i==j
	d = 1;
end