File:Double Exponential Function.svg
Summary
Description |
English: Graph or double exponential compared to ordinary exponential function. |
||||||
Date | |||||||
Source | Own work | ||||||
Author | Andel | ||||||
Permission (Reusing this file) |
I, the copyright holder of this work, hereby publish it under the following license:
|
||||||
Other versions | File:Double Exponential Function.PNG | ||||||
SVG development | |||||||
Source code | MATLAB codefunction createfigure(X1, YMatrix1)
figure1 = figure;
axes1 = axes('Parent',figure1);
hold(axes1,'on');
plot1 = plot(X1,YMatrix1,'LineWidth',2);
set(plot1(1),'DisplayName','y = 1.5^x');
set(plot1(2),'DisplayName','y = 1.5^{1.5^x}');
xlim(axes1,[-7.1 7.1]);
ylim(axes1,[0 14]);
box(axes1,'on');
grid(axes1,'on');
hold(axes1,'off');
legend1 = legend(axes1,'show');
set(legend1,'Location','northwest','FontSize',15);
|