mirror of
https://asciireactor.com/otho/psdlag-agn.git
synced 2024-11-21 20:35:07 +00:00
developing script to plot psdlag output for mode=0
This commit is contained in:
parent
81a44fad38
commit
2013018284
@ -5,15 +5,33 @@ use Encode qw(encode decode);
|
||||
use feature 'say';
|
||||
use locale;
|
||||
|
||||
if !${^UTF8LOCALE} {
|
||||
if (!${^UTF8LOCALE}) {
|
||||
say "You are not using UTF-8 encoding. :("
|
||||
}
|
||||
my $charset=$ENV{LANG};
|
||||
our $driving_curve_name=decode($charset,$ARGV[0]);
|
||||
our @reprocessed_curves = [];
|
||||
while (my $)
|
||||
our $driving_curve_name=decode($charset,$ARGV[0]);
|
||||
open $driving_curve_file,$driving_curve_name,< or die $!;
|
||||
our $outputfilename=decode($charset,$ARGV[0]);
|
||||
open $outputfile,'<',$outputfilename or die $!;
|
||||
|
||||
my $star_linenum_1=0;
|
||||
my $star_linenum_2=0;
|
||||
|
||||
my $linenum=0;
|
||||
while(<$outputfile>) {
|
||||
$linenum++;
|
||||
if ($_ =~ /^\*+$/) {
|
||||
$star_linenum_1=$star_linenum_2;
|
||||
$star_linenum_2 = $linenum;
|
||||
}
|
||||
}
|
||||
say "Final set found between lines ",
|
||||
$star_linenum_1,
|
||||
" and ",
|
||||
$star_linenum_2;
|
||||
|
||||
|
||||
|
||||
@power_curve_source = [];
|
||||
@power_curve_reprocessed = [];
|
||||
@cross__correlation_power_curve = [];
|
||||
@phase_difference = [];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user