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