showg: /* Display old values of guesses */ /* and let user change them if desired */
chgflg = 0; /* First get the step size if rational form */ if( (d > 0) && (search != 0) )
{ /* there is a denominator polynomial */
printf( "delta = %.4E ? ", delta );
gets( s ); /* If input is not a null line, */ /* then decode the number. */ if( s[0] != '\0' )
{
chgflg = 1;
sscanf( s, "%lf", &delta );
} for( i=0; i<=neq; i++ )
step[i] *= delta;
}
/* If there were any changes to the default values */ /* then reinitialize the step size array. */ if( chgflg )
stpini();
solveq:
/* Solve equations. */
remese();
goto whtnxt;
ptabl:
/* Display the results */
remesp();
whtnxt: /* Test for convergence criteria. */ if( (delta < 1.0e-15) || (spread < 1.0e-15) )
askitr = iter; if( askitr > iter ) goto LOOP;
/* Ask what to do next */
printf( "Enter #(iterations), p(rint), w(rite), g(uess), x(it), t(runc), n(one) ?"); /* Get command line from operator */
sp = &s[0];
gets( sp );
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.