mttGetCovariables.m 363 B

12345678910
  1. function covariables = mttGetCovariables(env,domain,domain_item)
  2. if isempty(domain)
  3. covariables.effort = {'effort'} ;
  4. covariables.flow = {'flow'} ;
  5. covariables.effort_default = {[]} ;
  6. covariables.flow_default = {[]} ;
  7. else
  8. covariables = getfield(env,'public_domain',{domain},'item',domain_item) ;
  9. end