comparison +sbp/D1Upwind.m @ 503:feebfca90080 feature/quantumTriangles

Added the new abstract classes to hypsyst3D and Upwind1D to make them work with Jonatans changes
author Ylva Rydin <ylva.rydin@telia.com>
date Tue, 16 May 2017 09:18:10 +0200
parents f39f98b59f61
children 111fcbcff2e9
comparison
equal deleted inserted replaced
502:2d5dea05456d 503:feebfca90080
51 51
52 obj.m = m; 52 obj.m = m;
53 obj.borrowing = []; 53 obj.borrowing = [];
54 54
55 end 55 end
56
57 function str = string(obj)
58 str = [class(obj) '_' num2str(obj.order)];
59 end
56 end 60 end
57 61
58 62
59 end 63 end
60 64