Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #4673 > unrolled thread
| Started by | Jörg Buchholz <bookwood4new@freenet.de> |
|---|---|
| First post | 2024-10-21 13:34 +0200 |
| Last post | 2024-10-22 08:04 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to comp.graphics.apps.gnuplot
how to replace "reread" in a loop? Jörg Buchholz <bookwood4new@freenet.de> - 2024-10-21 13:34 +0200
Re: how to replace "reread" in a loop? Jörg Buchholz <bookwood4new@freenet.de> - 2024-10-22 08:04 +0200
| From | Jörg Buchholz <bookwood4new@freenet.de> |
|---|---|
| Date | 2024-10-21 13:34 +0200 |
| Subject | how to replace "reread" in a loop? |
| Message-ID | <vf5e7j$u3ut$1@dont-email.me> |
Hi, I have a old script that use the reread command in some loops.
example:
The file "line1.loop" contains
l1 = 1/(1-l)
b = log10(log10(l1))
set arrow from a2,b to b2,b nohead lt 0
l = l + 0.001
if(l<0.01) reread
and in the main script is
load 'line1.loop'
This works from gnuplot 2.x to 5.4 but not in 6.x.
Is there a way to use this very old gnuplot-script?
Jörg
[toc] | [next] | [standalone]
| From | Jörg Buchholz <bookwood4new@freenet.de> |
|---|---|
| Date | 2024-10-22 08:04 +0200 |
| Message-ID | <vf7f8v$1c8es$1@dont-email.me> |
| In reply to | #4673 |
On 21.10.2024 13:34, Jörg Buchholz wrote:
> Hi, I have a old script that use the reread command in some loops.
>
> example:
>
> The file "line1.loop" contains
>
> l1 = 1/(1-l)
> b = log10(log10(l1))
> set arrow from a2,b to b2,b nohead lt 0
> l = l + 0.001
> if(l<0.01) reread
>
> and in the main script is
>
> load 'line1.loop'
>
>
> This works from gnuplot 2.x to 5.4 but not in 6.x.
>
> Is there a way to use this very old gnuplot-script?
>
do for [l=1:10]{
l1 = 1/(1-(l/1000.0))
b = log10(log10(l1))
set arrow from a2,b to b2,b nohead lt 0
}
replace it.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.graphics.apps.gnuplot
csiph-web