Skip to content

Commit

Permalink
Merge pull request #313 from AlbertoCuadra/develop
Browse files Browse the repository at this point in the history
Solve: minor bug print results
  • Loading branch information
AlbertoCuadra committed Mar 24, 2022
2 parents e63a319 + 0c050fb commit f6fd6ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Settings/functions/Display/displayresults.m
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ function displayresults(varargin)
fprintf('wave angle[deg]| | %12.4f | %12.4f\n', mix2.beta, mix3.beta);
fprintf('deflection[deg]| | %12.4f | %12.4f\n', mix2.theta, mix3.theta);
else
fprintf('max def. [deg]| | %12.4f | %12.4f\n', mix2.theta_max);
fprintf('sonic def.[deg]| | %12.4f | %12.4f\n', mix2.theta_sonic);
fprintf('max def. [deg]| | %12.4f | %12.4f\n', mix2.theta_max, mix3.theta_max);
fprintf('sonic def.[deg]| | %12.4f | %12.4f\n', mix2.theta_sonic, mix3.theta_sonic);
end
elseif strcmpi(ProblemType, 'ROCKET')
fprintf('------------------------------------------------------------------------\n');
Expand Down

0 comments on commit f6fd6ca

Please sign in to comment.