MPSolve 3.2.1
|
Go to the source code of this file.
Functions | |
MPS_BEGIN_DECLS void | mps_fnewton_usr (mps_context *st, mps_polynomial *poly, mps_approximation *root, cplx_t corr) |
User-defined program for the computation of ![]() ![]() | |
void | mps_dnewton_usr (mps_context *st, mps_polynomial *poly, mps_approximation *root, cdpe_t corr) |
User-defined program for the computation of ![]() ![]() | |
void | mps_mnewton_usr (mps_context *st, mps_polynomial *poly, mps_approximation *root, mpc_t corr, long int wp) |
User-defined program for the computation of ![]() ![]() | |
mps_boolean | mps_feval_usr (mps_context *ctx, mps_polynomial *p, cplx_t x, cplx_t value, double *error) |
mps_boolean | mps_deval_usr (mps_context *ctx, mps_polynomial *p, cdpe_t x, cdpe_t value, rdpe_t error) |
mps_boolean | mps_meval_usr (mps_context *ctx, mps_polynomial *p, mpc_t x, mpc_t value, rdpe_t error) |
void mps_dnewton_usr | ( | mps_context * | s, |
mps_polynomial * | poly, | ||
mps_approximation * | root, | ||
cdpe_t | corr | ||
) |
User-defined program for the computation of
s | The current mps_context |
poly | The mps_polynomial being solved. |
root | The approximation whose Newton correction shall be computed. |
corr | The output value where the newton correction will be stored. |
This sample computes the 'Mandelbrot polynomial by means of the relation: p=1+x*p**2, starting with p=1
MPS_BEGIN_DECLS void mps_fnewton_usr | ( | mps_context * | s, |
mps_polynomial * | poly, | ||
mps_approximation * | root, | ||
cplx_t | corr | ||
) |
User-defined program for the computation of
s | The current mps_context |
poly | The mps_polynomial being solved. |
root | The approximation whose Newton correction shall be computed. |
corr | The output value where the newton correction will be stored. |
This sample computes the 'Mandelbrot polynomial by means of the relation: p=1+x*p**2, starting with p=1
void mps_mnewton_usr | ( | mps_context * | s, |
mps_polynomial * | poly, | ||
mps_approximation * | root, | ||
mpc_t | corr, | ||
long int | wp | ||
) |
User-defined program for the computation of
s | The current mps_context |
poly | The mps_polynomial being solved. |
root | The approximation whose Newton correction shall be computed. |
corr | The output value where the newton correction will be stored. |
This sample computes the 'Mandelbrot polynomial by means of the relation: p=1+x*p**2, starting with p=1