comparison +sbp/D1Upwind.m @ 886:8894e9c49e40 feature/timesteppers

Merge with default for latest changes
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 15 Nov 2018 16:36:21 -0800
parents e1d11b6a68d8
children 111fcbcff2e9
comparison
equal deleted inserted replaced
816:b5e5b195da1e 886:8894e9c49e40
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