- or download this
$atten = build_pad(10);
$atten->dump("PAD 10dB");
...
my $i = $h->simplify();
$i->dump("RESULT!");
- or download this
$atten = Gr->new(pad => 10);
$atten->dump("PAD 10dB");
...
$atten->dump("PAD 10dB + PAD 20dB + TERM 50ohm");
$atten->simplify();
$atten->dump("RESULT!");
- or download this
my ($in_neg, $in_pos, $out_neg, $out_pos) = (node(), node(), node(), n
+ode());
- or download this
$$_ = node() for \my ($in_neg, $in_pos, $out_neg, $out_pos);