Docstrings updated
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 50 KiB |
BIN
dev/assets/ex007b.png
Normal file
|
After Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 79 KiB |
BIN
dev/assets/ex007c.png
Normal file
|
After Width: | Height: | Size: 201 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -13,11 +13,33 @@
|
||||
img[10,:] .= -5
|
||||
@gp img "w image notit"</code></pre><p><img src="../assets/ex007a.png" alt/></p><p>Note that the first index in the <code>img</code> matrix corresponds to the <code>x</code> coordinate when the image is displayed.</p><p>If the orientation is not the correct one you may adjust it with the gnuplot <code>rotate=</code> keyword (the following example requires the <code>TestImages</code> package to be installed):</p><pre><code class="language-julia">using TestImages
|
||||
img = testimage("lighthouse");
|
||||
@gp "set size square" "set autoscale fix" img "rotate=-90deg with rgbimage notit"</code></pre><p><img src="../assets/ex007b.jpg" alt/></p><p>To display a gray image use <code>with image</code> in place of <code>with rgbimage</code>, e.g.:</p><pre><code class="language-julia">img = testimage("walkbridge");
|
||||
@gp palette(:lapaz) "set size square" "set autoscale fix" img "rotate=-0.5pi with image notit"</code></pre><p><img src="../assets/ex007c.jpg" alt/></p><p>Note that we used a custom palette (<code>:lapaz</code>, see <a href="#Palettes-and-line-types-1">Palettes and line types</a>) and the rotation angle has been expressed in radians (<code>-0.5pi</code>).</p><h2 id="plots3d-1"><a class="docs-heading-anchor" href="#plots3d-1">3D plots</a><a class="docs-heading-anchor-permalink" href="#plots3d-1" title="Permalink"></a></h2><p>3D plots follow the same rules as 2D ones, just replace the <code>@gp</code> macro with <code>@gsp</code> and add the required columns (according to the plotting style).</p><p>E.g., to plot a spiral increasing in size along the <code>X</code> direction:</p><pre><code class="language-julia">x = 0:0.1:10pi
|
||||
@gsp cbr=[-1,1].*30 x sin.(x) .* x cos.(x) .* x x./20 "w p pt 7 ps var lc pal"</code></pre><p><img src="../assets/ex008.png" alt/></p><p>Note that the fourth array in the dataset, <code>x./20</code>, is used as by gnuplot as point size (<code>ps var</code>). Also note that all the keywords discussed above can also be used in 3D plots.</p><h2 id="Palettes-and-line-types-1"><a class="docs-heading-anchor" href="#Palettes-and-line-types-1">Palettes and line types</a><a class="docs-heading-anchor-permalink" href="#Palettes-and-line-types-1" title="Permalink"></a></h2><p>The <strong>Gnuplot.jl</strong> package comes with all the <a href="https://juliagraphics.github.io/ColorSchemes.jl/stable/basics/#Pre-defined-schemes-1">ColorSchemes</a> palettes readily available.</p><p>A gnuplot-compliant palette can be retrieved with <code>palette()</code>, and used as any other command. The previous example may use an alternative palette with:</p><pre><code class="language-julia">x = 0:0.1:10pi
|
||||
@gsp palette(:viridis) cbr=[-1,1].*30 x sin.(x) .* x cos.(x) .* x x./20 "w p pt 7 ps var lc pal"</code></pre><p><img src="../assets/ex008a.png" alt/></p><p>The <a href="https://juliagraphics.github.io/ColorSchemes.jl/stable/basics/#Pre-defined-schemes-1">ColorSchemes</a> palettes can also be used to generate line types (actually just line colors), by means of the <code>linetypes()</code> function, e.g.</p><pre><code class="language-julia">@gp linetypes(:deepsea)
|
||||
@gp "set size square" "set autoscale fix" img "rotate=-90deg with rgbimage notit"</code></pre><p><img src="../assets/ex007b.png" alt/></p><p>To display a gray image use <code>with image</code> in place of <code>with rgbimage</code>, e.g.:</p><pre><code class="language-julia">img = testimage("walkbridge");
|
||||
@gp palette(:lapaz) "set size square" "set autoscale fix" img "rotate=-0.5pi with image notit"</code></pre><p><img src="../assets/ex007c.png" alt/></p><p>Note that we used a custom palette (<code>:lapaz</code>, see <a href="#Palettes-and-line-types-1">Palettes and line types</a>) and the rotation angle has been expressed in radians (<code>-0.5pi</code>).</p><h2 id="plots3d-1"><a class="docs-heading-anchor" href="#plots3d-1">3D plots</a><a class="docs-heading-anchor-permalink" href="#plots3d-1" title="Permalink"></a></h2><p>3D plots follow the same rules as 2D ones, just replace the <code>@gp</code> macro with <code>@gsp</code> and add the required columns (according to the plotting style).</p><p>E.g., to plot a spiral increasing in size along the <code>X</code> direction:</p><pre><code class="language-julia">x = 0:0.1:10pi
|
||||
@gsp cbr=[-1,1].*30 x sin.(x) .* x cos.(x) .* x x./20 "w p pt 7 ps var lc pal"</code></pre><p><img src="../assets/ex008.png" alt/></p><p>Note that the fourth array in the dataset, <code>x./20</code>, is used as by gnuplot as point size (<code>ps var</code>). Also note that all the keywords discussed above can also be used in 3D plots.</p><h2 id="Palettes-and-line-types-1"><a class="docs-heading-anchor" href="#Palettes-and-line-types-1">Palettes and line types</a><a class="docs-heading-anchor-permalink" href="#Palettes-and-line-types-1" title="Permalink"></a></h2><p>The <strong>Gnuplot.jl</strong> package comes with all the <a href="https://juliagraphics.github.io/ColorSchemes.jl/stable/basics/#Pre-defined-schemes-1">ColorSchemes</a> palettes readily available.</p><p>A gnuplot-compliant palette can be retrieved with <a href="../api/#Gnuplot.palette"><code>palette()</code></a>, and used as any other command. The previous example may use an alternative palette with:</p><pre><code class="language-julia">x = 0:0.1:10pi
|
||||
@gsp palette(:viridis) cbr=[-1,1].*30 :-
|
||||
@gsp :- x sin.(x) .* x cos.(x) .* x x./20 "w p pt 7 ps var lc pal"</code></pre><p><img src="../assets/ex008a.png" alt/></p><p>The <a href="https://juliagraphics.github.io/ColorSchemes.jl/stable/basics/#Pre-defined-schemes-1">ColorSchemes</a> palettes can also be used to generate line types (actually just line colors), by means of the <a href="../api/#Gnuplot.linetypes"><code>linetypes()</code></a> function, e.g.</p><pre><code class="language-julia">@gp linetypes(:deepsea)
|
||||
x = 1:0.1:4pi
|
||||
for i in 1:5
|
||||
@gp :- x i.* sin.(x) "w l notit lw 5"
|
||||
end</code></pre><p><img src="../assets/ex009.png" alt/></p><h2 id="Exporting-plots-to-files-1"><a class="docs-heading-anchor" href="#Exporting-plots-to-files-1">Exporting plots to files</a><a class="docs-heading-anchor-permalink" href="#Exporting-plots-to-files-1" title="Permalink"></a></h2><p>The <code>save()</code> function allows to export all plots (as well as multiplots, see <a href="../advanced/#Multiplot-1">Multiplot</a>) to a file using one of the many available gnuplot terminals. To check which terminals are available in your platform type <code>set term</code> in your gnuplot terminal.</p><p>All plots in this page have been saved with:</p><pre><code class="language-julia">save(term="pngcairo size 480,360", output="assets/output.png")</code></pre><p>except the <em>Lena</em> image, saved with the <code>jpeg</code> terminal:</p><pre><code class="language-julia">save(term="jpeg size 480,360", output="assets/output.png")</code></pre><h2 id="Gnuplot-scripts-1"><a class="docs-heading-anchor" href="#Gnuplot-scripts-1">Gnuplot scripts</a><a class="docs-heading-anchor-permalink" href="#Gnuplot-scripts-1" title="Permalink"></a></h2><p>Besides exporting plots in a file <strong>Gnuplot.jl</strong> can also save a <em>script</em>, i.e. a file containing the minimum set of data and commands required to generate a plot within gnuplot.</p><p>To generate a script for one of the example above use:</p><pre><code class="language-julia">save("script.gp")</code></pre><p>after the plot has been displayed. The script can then be used within a gnuplot session as follows:</p><pre><code class="language-none">gunplot> load 'script.gp'</code></pre><p>to generate a plot identical to the original one, without using the Julia language.</p><p>The purpose of gnuplot scripts is to allow sharing all data, alongside a plot, in order to foster collaboration among scientists and replicability of results. Moreover, a script can be used at any time to change the details of a plot, without the need to re-run the Julia code used to generate it the first time.</p><p>Finally, the scripts are the only possible output when <a href="../advanced/#Dry-sessions-1">Dry sessions</a> are used (i.e. when gnuplot is not available in the user platform.</p><section class="footnotes is-size-7"><ul><li class="footnote" id="footnote-1"><a class="tag is-link" href="#citeref-1">1</a>a previous knowledge of <a href="http://gnuplot.sourceforge.net/documentation.html">gnuplot</a> usage is, nevertheless, required.</li></ul></section></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../install/">« Installation</a><a class="docs-footer-nextpage" href="../advanced/">Advanced techniques »</a></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 31 March 2020 01:40">Tuesday 31 March 2020</span>. Using Julia version 1.3.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
|
||||
end</code></pre><p><img src="../assets/ex009.png" alt/></p><p>The list of all available palette can be retrieved with <a href="../api/#Gnuplot.palette_names"><code>palette_names()</code></a>:</p><pre><code class="language-julia-repl">julia> palette_names()
|
||||
478-element Array{Symbol,1}:
|
||||
:BuPu_6
|
||||
:Spectral_4
|
||||
:lighttemperaturemap
|
||||
:broc
|
||||
:RdYlGn_5
|
||||
:Set2_6
|
||||
:PRGn_3
|
||||
:greenpink
|
||||
:Dark2_7
|
||||
:turku
|
||||
⋮
|
||||
:Set1_8
|
||||
:coolwarm
|
||||
:picasso
|
||||
:Purples_6
|
||||
:BrBG_8
|
||||
:flag
|
||||
:valentine
|
||||
:Oranges_4
|
||||
:avocado</code></pre><h2 id="Exporting-plots-to-files-1"><a class="docs-heading-anchor" href="#Exporting-plots-to-files-1">Exporting plots to files</a><a class="docs-heading-anchor-permalink" href="#Exporting-plots-to-files-1" title="Permalink"></a></h2><p>The <a href="../api/#Gnuplot.save"><code>save()</code></a> function allows to export all plots (as well as multiplots, see <a href="../advanced/#Multiplot-1">Multiplot</a>) to a file using one of the many available gnuplot terminals. To check which terminals are available in your platform type <code>set term</code> in your gnuplot terminal.</p><p>All plots in this page have been saved with:</p><pre><code class="language-julia">save(term="pngcairo size 480,360", output="assets/output.png")</code></pre><p>except the <em>Lena</em> image, saved with the <code>jpeg</code> terminal:</p><pre><code class="language-julia">save(term="jpeg size 480,360", output="assets/output.png")</code></pre><h2 id="Gnuplot-scripts-1"><a class="docs-heading-anchor" href="#Gnuplot-scripts-1">Gnuplot scripts</a><a class="docs-heading-anchor-permalink" href="#Gnuplot-scripts-1" title="Permalink"></a></h2><p>Besides exporting plots in a file <strong>Gnuplot.jl</strong> can also save a <em>script</em>, i.e. a file containing the minimum set of data and commands required to generate a plot within gnuplot.</p><p>To generate a script for one of the example above use:</p><pre><code class="language-julia">save("script.gp")</code></pre><p>after the plot has been displayed. The script can then be used within a gnuplot session as follows:</p><pre><code class="language-none">gunplot> load 'script.gp'</code></pre><p>to generate a plot identical to the original one, without using the Julia language.</p><p>The purpose of gnuplot scripts is to allow sharing all data, alongside a plot, in order to foster collaboration among scientists and replicability of results. Moreover, a script can be used at any time to change the details of a plot, without the need to re-run the Julia code used to generate it the first time.</p><p>Finally, the scripts are the only possible output when <a href="../advanced/#Dry-sessions-1">Dry sessions</a> are used (i.e. when gnuplot is not available in the user platform.</p><section class="footnotes is-size-7"><ul><li class="footnote" id="footnote-1"><a class="tag is-link" href="#citeref-1">1</a>a previous knowledge of <a href="http://gnuplot.sourceforge.net/documentation.html">gnuplot</a> usage is, nevertheless, required.</li></ul></section></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../install/">« Installation</a><a class="docs-footer-nextpage" href="../advanced/">Advanced techniques »</a></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 31 March 2020 02:08">Tuesday 31 March 2020</span>. Using Julia version 1.3.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Examples · Gnuplot.jl</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="../"><img src="../assets/logo.png" alt="Gnuplot.jl logo"/></a><div class="docs-package-name"><span class="docs-autofit">Gnuplot.jl</span></div><form class="docs-search" action="../search/"><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../install/">Installation</a></li><li><a class="tocitem" href="../basic/">Basic usage</a></li><li><a class="tocitem" href="../advanced/">Advanced techniques</a></li><li><a class="tocitem" href="../tips/">Tips</a></li><li class="is-active"><a class="tocitem" href>Examples</a></li><li><a class="tocitem" href="../api/">API</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>Examples</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Examples</a></li></ul></nav><div class="docs-right"><a class="docs-edit-link" href="https://github.com/gcalderone/Gnuplot.jl/blob/master/docs/src/examples.md" title="Edit on GitHub"><span class="docs-icon fab"></span><span class="docs-label is-hidden-touch">Edit on GitHub</span></a><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article class="content" id="documenter-page"><h1 id="Examples-1"><a class="docs-heading-anchor" href="#Examples-1">Examples</a><a class="docs-heading-anchor-permalink" href="#Examples-1" title="Permalink"></a></h1><p>An exhaustive gallery of example is available here:</p><p><a href="https://lazarusa.github.io/gnuplot-examples/">https://lazarusa.github.io/gnuplot-examples/</a></p><p>Further <code>gnuplot</code> examples can be found here: <a href="http://www.gnuplotting.org/">http://www.gnuplotting.org/</a></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../tips/">« Tips</a><a class="docs-footer-nextpage" href="../api/">API »</a></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 31 March 2020 01:40">Tuesday 31 March 2020</span>. Using Julia version 1.3.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
|
||||
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Examples · Gnuplot.jl</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="../"><img src="../assets/logo.png" alt="Gnuplot.jl logo"/></a><div class="docs-package-name"><span class="docs-autofit">Gnuplot.jl</span></div><form class="docs-search" action="../search/"><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../install/">Installation</a></li><li><a class="tocitem" href="../basic/">Basic usage</a></li><li><a class="tocitem" href="../advanced/">Advanced techniques</a></li><li><a class="tocitem" href="../tips/">Tips</a></li><li class="is-active"><a class="tocitem" href>Examples</a></li><li><a class="tocitem" href="../api/">API</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>Examples</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Examples</a></li></ul></nav><div class="docs-right"><a class="docs-edit-link" href="https://github.com/gcalderone/Gnuplot.jl/blob/master/docs/src/examples.md" title="Edit on GitHub"><span class="docs-icon fab"></span><span class="docs-label is-hidden-touch">Edit on GitHub</span></a><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article class="content" id="documenter-page"><h1 id="Examples-1"><a class="docs-heading-anchor" href="#Examples-1">Examples</a><a class="docs-heading-anchor-permalink" href="#Examples-1" title="Permalink"></a></h1><p>An exhaustive gallery of example is available here:</p><p><a href="https://lazarusa.github.io/gnuplot-examples/">https://lazarusa.github.io/gnuplot-examples/</a></p><p>Further <code>gnuplot</code> examples can be found here: <a href="http://www.gnuplotting.org/">http://www.gnuplotting.org/</a></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../tips/">« Tips</a><a class="docs-footer-nextpage" href="../api/">API »</a></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 31 March 2020 02:08">Tuesday 31 March 2020</span>. Using Julia version 1.3.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Search · Gnuplot.jl</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="../"><img src="../assets/logo.png" alt="Gnuplot.jl logo"/></a><div class="docs-package-name"><span class="docs-autofit">Gnuplot.jl</span></div><form class="docs-search" action><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../install/">Installation</a></li><li><a class="tocitem" href="../basic/">Basic usage</a></li><li><a class="tocitem" href="../advanced/">Advanced techniques</a></li><li><a class="tocitem" href="../tips/">Tips</a></li><li><a class="tocitem" href="../examples/">Examples</a></li><li><a class="tocitem" href="../api/">API</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>Search</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Search</a></li></ul></nav><div class="docs-right"><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article><p id="documenter-search-info">Loading search...</p><ul id="documenter-search-results"></ul></article></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 31 March 2020 01:41">Tuesday 31 March 2020</span>. Using Julia version 1.3.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body><script src="../search_index.js"></script><script src="../assets/search.js"></script></html>
|
||||
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Search · Gnuplot.jl</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="../"><img src="../assets/logo.png" alt="Gnuplot.jl logo"/></a><div class="docs-package-name"><span class="docs-autofit">Gnuplot.jl</span></div><form class="docs-search" action><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../install/">Installation</a></li><li><a class="tocitem" href="../basic/">Basic usage</a></li><li><a class="tocitem" href="../advanced/">Advanced techniques</a></li><li><a class="tocitem" href="../tips/">Tips</a></li><li><a class="tocitem" href="../examples/">Examples</a></li><li><a class="tocitem" href="../api/">API</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>Search</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Search</a></li></ul></nav><div class="docs-right"><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article><p id="documenter-search-info">Loading search...</p><ul id="documenter-search-results"></ul></article></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 31 March 2020 02:08">Tuesday 31 March 2020</span>. Using Julia version 1.3.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body><script src="../search_index.js"></script><script src="../assets/search.js"></script></html>
|
||||
|
||||