File:Lissajous curve 3by2.svg

Summary
A Lissajous curve, that can be expressed in parametric form as:
- https://wikimedia.org/api/rest_v1/media/math/render/svg/3b9efe37aae3e167657e1b0c03bedb58b5cf7e57" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.838ex; width:33.686ex; height:2.843ex;" alt="{\displaystyle x=A\sin(at+\delta ),\quad y=B\sin(bt)}"> <img src="
with https://wikimedia.org/api/rest_v1/media/math/render/svg/2a0be4b8203e824561fa22ea831a2d86f2f028c9" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.338ex; width:5.522ex; height:2.176ex;" alt="{\displaystyle a=3}">, <img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/32584049ed5f72969777f89d69b74ee462875e82" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.338ex; width:5.29ex; height:2.176ex;" alt="{\displaystyle b=2}"> and <img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3d58cf73c22f3b86529a7f0234780ae2cf03a363" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.838ex; width:7.856ex; height:2.843ex;" alt="{\displaystyle \delta =\pi /2}">. I created it with the following GNUplot code: <img src="
set samples 5000 set terminal svg set output "Lissajous_curve_3by2.svg" # plotting within a square set size square # remove most of information from the picture set noxtic set noytic set key off # plot set parametric a=3 b=2 delta=pi/2 plot [0:2*pi] sin(a*t + delta),sin(b*t) with lines linewidth 2
and then I post-processed with Inkscape
Licensing
Lua error in package.lua at line 80: module 'strict' not found.
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 03:43, 5 January 2017 | ![]() | 600 × 600 (3 KB) | 127.0.0.1 (talk) | <p>A Lissajous curve, that can be expressed in parametric form as: </p> <dl><dd><span><span class="mwe-math-mathml-inline mwe-math-mathml-a11y" style="display: none;"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow class="MJX-TeXAtom-ORD"><mstyle displaystyle="true" scriptlevel="0"><mi>x</mi><mo>=</mo><mi>A</mi><mi>sin</mi><mo><!-- --></mo><mo stretchy="false">(</mo><mi>a</mi><mi>t</mi><mo>+</mo><mi>δ<!-- δ --></mi><mo stretchy="false">)</mo><mo>,</mo><mspace width="1em"></mspace><mi>y</mi><mo>=</mo><mi>B</mi><mi>sin</mi><mo><!-- --></mo><mo stretchy="false">(</mo><mi>b</mi><mi>t</mi><mo stretchy="false">)</mo></mstyle></mrow><annotation encoding="application/x-tex">{\displaystyle x=A\sin(at+\delta ),\quad y=B\sin(bt)}</annotation></semantics></math></span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3b9efe37aae3e167657e1b0c03bedb58b5cf7e57" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.838ex; width:33.686ex; height:2.843ex;" alt="{\displaystyle x=A\sin(at+\delta ),\quad y=B\sin(bt)}"></span></dd></dl> <p>with <span><span class="mwe-math-mathml-inline mwe-math-mathml-a11y" style="display: none;"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow class="MJX-TeXAtom-ORD"><mstyle displaystyle="true" scriptlevel="0"><mi>a</mi><mo>=</mo><mn>3</mn></mstyle></mrow><annotation encoding="application/x-tex">{\displaystyle a=3}</annotation></semantics></math></span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/2a0be4b8203e824561fa22ea831a2d86f2f028c9" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.338ex; width:5.522ex; height:2.176ex;" alt="{\displaystyle a=3}"></span>, <span><span class="mwe-math-mathml-inline mwe-math-mathml-a11y" style="display: none;"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow class="MJX-TeXAtom-ORD"><mstyle displaystyle="true" scriptlevel="0"><mi>b</mi><mo>=</mo><mn>2</mn></mstyle></mrow><annotation encoding="application/x-tex">{\displaystyle b=2}</annotation></semantics></math></span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/32584049ed5f72969777f89d69b74ee462875e82" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.338ex; width:5.29ex; height:2.176ex;" alt="{\displaystyle b=2}"></span> and <span><span class="mwe-math-mathml-inline mwe-math-mathml-a11y" style="display: none;"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow class="MJX-TeXAtom-ORD"><mstyle displaystyle="true" scriptlevel="0"><mi>δ<!-- δ --></mi><mo>=</mo><mi>π<!-- π --></mi><mrow class="MJX-TeXAtom-ORD"><mo>/</mo></mrow><mn>2</mn></mstyle></mrow><annotation encoding="application/x-tex">{\displaystyle \delta =\pi /2}</annotation></semantics></math></span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3d58cf73c22f3b86529a7f0234780ae2cf03a363" class="mwe-math-fallback-image-inline" aria-hidden="true" style="vertical-align: -0.838ex; width:7.856ex; height:2.843ex;" alt="{\displaystyle \delta =\pi /2}"></span>. I created it with the following GNUplot code: </p> <pre> set samples 5000 set terminal svg set output "Lissajous_curve_3by2.svg" # plotting within a square set size square # remove most of information from the picture set noxtic set noytic set key off # plot set parametric a=3 b=2 delta=pi/2 plot [0:2*pi] sin(a*t + delta),sin(b*t) with lines linewidth 2</pre> <p>and then I post-processed with Inkscape </p> |
- You cannot overwrite this file.
File usage
The following 2 pages link to this file: