Skip to content

Instantly share code, notes, and snippets.

@owen8877
Created March 9, 2019 02:52
Show Gist options
  • Save owen8877/90f3b5cf112d3f75630e4733a7c16746 to your computer and use it in GitHub Desktop.
Save owen8877/90f3b5cf112d3f75630e4733a7c16746 to your computer and use it in GitHub Desktop.
function value = default(s, key, def_value)
if isfield(s, key)
value = getfield(s, key);
else
value = def_value;
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment