Advertisement
hakonhagland

pdl-graphics-gnuplot-win11-test

Oct 4th, 2022
1,577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.12 KB | None | 0 0
  1. use strict;
  2. use warnings;
  3. use PDL;
  4. use PDL::Graphics::Gnuplot;
  5.  
  6. my $x = sequence(101) - 50;
  7. gplot($x**2);
  8.  
  9. sleep 5;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement