rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
hp_plot_sim_data.m
1 function hp_plot_sim_data(tree,sim_data,param)
2 treefirst=tree_first(tree);
3  plot_sim_data(treefirst.model,treefirst.model_data,sim_data,param);
4 
5 %Hilfsfunktion für die Baumnavigation (noch nicht optimal!!!)
6  function value= tree_first (tree)
7  t= iscell(tree);
8  if t==1
9  value=tree_first(tree{1});
10  else
11  value=tree;
12  end;
13 
14  end
15 
16 end