In Excel's solver, one can define how many iterations are to be done, to one's liking.
I am wondering if this is possible to do with NSolve in Mathematica?
Code
This is what I'm working with:
A = 3580/1000; (*constante*)
B = 736/1000;(*constante*)
R1 = 5/1000;(*0-1.5*)
R2 = 17/1000;(*0-1.5*)
fR1 = ((A + B) (1 - a)^2 (1/15 + P2/21 - (4 P4)/35))/
(A (1/15 (3 + 4 a + 8 a^2) + 4/21 (3 + a - 4 a^2) P2 +
8/35 (1 - a)^2 P4) + B (1 - a)^2 (1/15 + P2/21 - (4 P4)/35));
fR2 = (A (1 - a)^2 (1/15 + P2/21 - (4 P4)/35) + B (1 - a)^2 (1/15 - (2 P2)/21 + P4/35))/
(A (1/15 (3 + 4 a + 8 a^2) - 2/21 (3 + a - 4 a^2) P2 +
3/35 (1 - a)^2 P4) + B (1 - a)^2 (1/15 - (2 P2)/21 + P4/35));
fP4 = -((83 P2)/1000) + (1366 P2^2)/1000 - (1899 P2^3)/1000 + (1616 P2^4)/1000;
fRho = ((A + B) (1 - a)^2)/(A (8 a^2 + 4 a + 3) + B (1 - a)^2);
NSolve[R1 == fR1 && R2 == fR2 && P4 == fP4 && rho == fRho, {P2, P4, a, rho}, Reals];
MatrixForm[%]

