Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac 17263: Including the rightmost tick in the asymptote-output
Browse files Browse the repository at this point in the history
  • Loading branch information
Sara Kropf committed Jul 28, 2015
1 parent 28531de commit 643af09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/combinat/fsm_fourier.pyx
Expand Up @@ -64,7 +64,7 @@ This is a mostly internal class speeding up some of the computation.
:meth:`~FSMFourierCache.b` | Compute `\mathbf{b}(r)`.
:meth:`~FSMFourierCache.fluctuation_empirical` | Compute the fluctuation empirically.
:meth:`~FSMFourierCache.fluctuation_fourier` | Compute the fluctuation via an the Fourier series.
:meth:`~FSMFourierCache.fluctuation_fourier` | Compute the fluctuation via the Fourier series.
Example
=======
Expand Down Expand Up @@ -2316,7 +2316,7 @@ real[] x=a[0];
real[] y=a[1];
draw(graph(x,y), red+0.25bp);
xaxis(Bottom, RightTicks("$%%f$", Step=1, step=0.25));
xaxis(Bottom, RightTicks("$%%f$", Step=1, step=0.25), xmax=%g);
yaxis(Left,RightTicks(trailingzero));
'''

Expand Down Expand Up @@ -2345,4 +2345,4 @@ yaxis(Left,RightTicks(trailingzero));
f.write("%g %g\n" % (x, y))
with open("%s.asy" % prefix, "w") as f:
f.write(template % ((<double> width)/(end-start),
prefix, prefix))
prefix, prefix, end+0.001))

0 comments on commit 643af09

Please sign in to comment.