Skip to content

Commit

Permalink
Merge pull request #8 from mjuez/master
Browse files Browse the repository at this point in the history
fixed data generation order.
  • Loading branch information
mjuez authored Mar 17, 2017
2 parents b8a9a73 + e13a313 commit cc1996a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/4computeParameters/compute_features.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function compute_features(root_spines_neck_repaired_path,file_name)
header=[header regexp(deblank(sprintf('B_r_%d ', 1:(num_curves-2))), ' ', 'split')]; %Minor axis
header=[header regexp(deblank(sprintf('B_R_%d ', 1:(num_curves-2))), ' ', 'split')]; %Major axis

ratio_ellipses_comb=combnk(1:(num_curves-2),2);
ratio_ellipses_comb=flipud(combnk(1:(num_curves-2),2));
num_elem=size(ratio_ellipses_comb,1);
header=[header regexp(deblank(sprintf('ratio_%d_%d ', ratio_ellipses_comb')), ' ', 'split')]; %Ratio between sections
header=[header regexp(deblank(sprintf('inst_Theta_%d ', 1:(num_curves-2))), ' ', 'split')]; %Instant direction elevation (Theta)
Expand Down

0 comments on commit cc1996a

Please sign in to comment.