Skip to content

Commit

Permalink
Change code to define ylabel
Browse files Browse the repository at this point in the history
ylabel("Transformed "+ VarNames(end))
  • Loading branch information
MarcoRianiUNIPR committed Dec 10, 2024
1 parent 2c44f82 commit ad97a00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion toolbox/graphics/aceplot.m
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,8 @@ function aceplot(out,varargin)
xlabel('y')
title('Plot of ty vs. y')
else
ylabel('Transformed y')
% ylabel('Transformed y')
ylabel("Transformed "+ VarNames(end))
xlabel(VarNames(end))
title("Plot of t"+ VarNames(end)+ " vs. "+ VarNames(end))
end
Expand Down

0 comments on commit ad97a00

Please sign in to comment.