Hello is it possible to have on the x-axis the representation log(0.1), log(0.01), etc. instead of the outcomes of these logs. Notice that I do want the actual log value plotted.
_values_log = log(h_values);
% Plotting
figure;
plot(h_values_log, euler_error_values, 'o-', 'DisplayName', 'Euler');
hold on;
plot(h_values_log, improved_euler_error_values, 's-', 'DisplayName', 'Improved Euler');
xlabel('log(h)');
ylabel('Log(|e|)');
title('Comparison of Euler and Improved Euler Methods');
legend('Euler', 'Improved Euler');
grid on;
hold off;