Help for this page

Select Code to Download


  1. or download this
    push(@factored_rows,%coefficient_array);
    
  2. or download this
    push(@factored_rows, \%coefficient_array);
    
  3. or download this
    push(@factored_rows, 'hash_key1', $value1, 'hash_key2', $value2);
    
  4. or download this
    @factored_eqns = &factorize(\@eqn_set,\@variables);
    
  5. or download this
    my @factored_eqns;
    ...
    @factored_eqns = factorize(\@eqn_set,\@variables);
    
  6. or download this
    my @factored_eqns;
    ...
    ...
        ...
        foreach $term(@{$equation}) {
        ...
    
  7. or download this
    my @factored_eqns = factorize(\@eqn_set,\@variables);
    ...
    
        foreach my $term (@{ $equation }) {
        ...
    
  8. or download this
        foreach $equation (@this_eqn_set){ 
        #then for each variable in the eqution
        foreach $variable (@this_variable_set){
        ...
    
  9. or download this
        for my $equation (@this_eqn_set) {
            for my $variable (@this_variable_set) {
                ...