File:Sinh cosh tanh.svg
From formulasearchengine
Jump to navigation
Jump to search
Original file (SVG file, nominally 504 × 504 pixels, file size: 17 KB)
This file is from Wikimedia Commons and may be used by other projects. The description on its file description page there is shown below.
Summary
| DescriptionSinh cosh tanh.svg |
The hyperbolic sine (red), hyperbolic cosine (green) and hyperbolic tangent (blue) graphed on the same axes. Replaces en:Image:sinh cosh tanh.png
|
| Date | |
| Source | Own work |
| Author | Fylwind at English Wikipedia |
| SVG development InfoField | |
| Source code InfoField | Python codeimport numpy as np
import matplotlib.pyplot as plt
lim = 8
size = 5.6
fig, ax = plt.subplots(figsize=(size, size))
xs = np.linspace(-lim, lim, 1000)
ax.plot(xs, np.sinh(xs), label="y = sinh(x)",
color="#b30000", linestyle="-", linewidth=2)
ax.plot(xs, np.cosh(xs), label="y = cosh(x)",
color="#00b300", linestyle="--", linewidth=2)
ax.plot(xs, np.tanh(xs), label="y = tanh(x)",
color="#0000b3", linestyle=":", linewidth=2)
ax.set_xlim(-lim, lim)
ax.set_ylim(-lim, lim)
ax.set_xticks([-1, 0, 1])
ax.set_yticks([-1, 0, 1])
ax.set_xlabel("x")
ax.set_ylabel("y")
ax.grid("on")
ax.legend(loc="lower right")
fig.tight_layout()
fig.savefig("sinh_cosh_tanh.svg", transparent=True)
|
Licensing
| Public domainPublic domainfalsefalse |
| I, the copyright holder of this work, release this work into the public domain. This applies worldwide. In some countries this may not be legally possible; if so: I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |
Original upload log
The original description page was here. All following user names refer to en.wikipedia.
- 2006-03-14 10:22 Ktims 1600×1200×0 (8934 bytes) The hyperbolic sine (red), hyperbolic cosine (green) and hyperbolic tangent (blue) graphed on the same axes.
- 2006-03-14 10:21 Ktims 1600×1200×0 (8965 bytes) The hyperbolic sine (red), hyperbolic cosine (green) and hyperbolic tangent (blue) graphed on the same axes.
- 2006-03-14 10:15 Ktims 1600×1200×0 (8967 bytes) The hyperbolic sine (red), hyperbolic cosine (green) and hyperbolic tangent (blue) graphed on the same axes.
- 2006-03-14 10:15 Ktims 1600×1200×0 (8980 bytes) The hyperbolic sine (red), hyperbolic cosine (green) and hyperbolic tangent (blue) graphed on the same axes.
- 2006-03-14 10:14 Ktims 1600×1200×0 (8902 bytes) The hyperbolic sine (red), hyperbolic cosine (green) and hyperbolic tangent (blue) graphed on the same axes.
Captions
Add a one-line explanation of what this file represents
Items portrayed in this file
depicts
10 March 2016
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 01:27, 11 March 2016 | 504 × 504 (17 KB) | wikimediacommons>Fylwind | Make asymptotics more evident. |
File usage
There are no pages that use this file.
Retrieved from "https://en.formulasearchengine.com/wiki/File:Sinh_cosh_tanh.svg"