Mercurial > repos > public > sbplib
view dealStruct.m @ 918:679f4ddd982f feature/timesteppers
Add properties for stage approximations and stage rates in the Rungekutta class.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 26 Nov 2018 16:23:27 -0800 |
parents | 95993ad2bd70 |
children | b7ec26da3d77 |
line wrap: on
line source
function varargout = dealStruct(s, fields) default_arg('fields', fieldnames(s)); assert(nargout == length(fields), 'Number of output arguements must match the number of fields'); for i = 1:length(fields) varargout{i} = s.(fields{i}); end end