Help for this page

Select Code to Download


  1. or download this
    print `/opt/csw/bin/octave -qfH < $filename`;
    
  2. or download this
    open (OCTAVE, "| /opt/csw/bin/octave -qfH < $filename") or die "Can't 
    +open pipe: $!\n";
    while(<OCTAVE>){
        print $_;
    }
    close(OCTAVE) or die "Couldn't close octave: $!";