Suppose you have data files named
sol_0.gpl
sol_1.gpl
etc.
Following gnuplot script will plot column 1 vs 2 and animate them.
reset
unset key
set grid
filename(n) = sprintf("sol_%d.gpl",n)
N=system("ls -1 sol_*.gpl | wc -l")
do for [i=0:N-1] {
plot filename(i) u 1:2 w l lw 2
pause 0.2
}
You could create png files and make a movie out of them.
Best
praveen
> On 20-Sep-2018, at 3:30 PM, chandra sekhar yaswanth devarakonda
> <[email protected]> wrote:
>
> Can anyone tell me how to create a movie with a 320 .gnuplot files? I run
> step-23 and I got 320 files with .gnuplot extension. I want to see the
> animation of these files.
>
>
>
>
>
>
>
>
>
>
>
>
> regards
> D.CHANDRASEKHAR YASWANTH
>
>
> --
> The deal.II project is located at http://www.dealii.org/
> For mailing list/forum options, see
> https://groups.google.com/d/forum/dealii?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "deal.II User Group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see
https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.