Mercurial > repos > public > sbplib
view struct2syntax.m @ 834:f1f0bf087e1c feature/burgers1d
Add support for artificial viscosity
- Add option to use upwind operators for discretizing the scheme
- Add option to use dissipation operators constructed from undivided differences when discretizing with narrow stencil operators
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 13 Sep 2018 14:21:47 +0200 |
parents | 54d3ab296ba0 |
children |
line wrap: on
line source
function str = struct2syntax(s) warning('Deprecated! Use toString() instead!'); fn = fieldnames(s); if length(fn) == 0 str = 'struct()'; return end str = sprintf('struct('); for i = 1:length(fn) - 1 value = s.(fn{i}); str = [str sprintf('''%s'', %s, ',fn{i}, valueString(value))]; end value = s.(fn{end}); str = [str sprintf('''%s'', %s)',fn{end}, valueString(value))]; end function str = valueString(value) if ischar(value) str = ['''' value '''']; else str = num2str(value); end end