Try running with gnuplot 4.6

This commit is contained in:
Giorgio Calderone 2017-08-28 01:51:32 +02:00
parent b66957d4ef
commit 235733000c
2 changed files with 7 additions and 5 deletions

View File

@ -95,10 +95,9 @@ The last two macros are supposed to be used only in the REPL, not in
Julia function. As you can see there is not much more to know before Julia function. As you can see there is not much more to know before
starting *gnuplotting*! starting *gnuplotting*!
Clearly, the **Gnuplot.jl** package hides much more under the hood. Clearly, the **Gnuplot.jl** package hides much more under the hood as
we will show below. Let's discuss some more advanced usage: fit the
Now let's discuss some more advanced usage: fit the data (with data (with gnuplot) and overplot the results.
gnuplot) and overplot the results.
``` Julia ``` Julia
const gp = Gnuplot # use an alias for the package name to quickly const gp = Gnuplot # use an alias for the package name to quickly
# access non exported symbols. # access non exported symbols.
@ -133,6 +132,9 @@ The documentation for each of these functions can be retrieved with
the `@doc` macro or by typing `?` in the REPL followed by the function the `@doc` macro or by typing `?` in the REPL followed by the function
name. name.
Note that
Besides these functions however, the syntax is still the the gnuplot one. Besides these functions however, the syntax is still the the gnuplot one.

View File

@ -271,7 +271,7 @@ function checkGnuplotVersion()
end end
end end
if ver < v"4.7" if ver < v"4.6"
error("gnuplot ver. >= 4.7 is required, but " * string(ver) * " was found.") error("gnuplot ver. >= 4.7 is required, but " * string(ver) * " was found.")
end end
log(1, "Found gnuplot version: " * string(ver)) log(1, "Found gnuplot version: " * string(ver))