Help for this page

Select Code to Download


  1. or download this
    $atten = build_pad(10);
    $atten->dump("PAD 10dB");
    ...
    
    my $i = $h->simplify();
    $i->dump("RESULT!");
    
  2. 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!");
    
  3. or download this
    my ($in_neg, $in_pos, $out_neg, $out_pos) = (node(), node(), node(), n
    +ode());
    
  4. or download this
    $$_ = node() for \my ($in_neg, $in_pos, $out_neg, $out_pos);