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)
Public domain This chart is ineligible for copyright and therefore in the public domain, because it consists entirely of information that is common property and contains no original authorship. For more information, see Commons:Threshold of originality § Charts

العربية | Deutsch | English | español | français | italiano | 日本語 | македонски | română | русский | slovenščina | 中文(简体) | 中文(繁體) | +/−

Category:PD chart#Double%20Exponential%20Function.svg
I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Double%20Exponential%20Function.svg
Category:Self-published work
Other versions File:Double Exponential Function.PNG
SVG development
InfoField
Source code
InfoField

MATLAB code

function 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);
Category:Exponential functions
Category:CC-Zero Category:Exponential functions Category:PD chart Category:Self-published work Category:Valid SVG created with MATLAB code