Borrar filtros
Borrar filtros

How to resolve the problem in for loop?

1 visualización (últimos 30 días)
Ammy
Ammy el 27 de Feb. de 2022
Comentada: Ammy el 27 de Feb. de 2022
import java.math.*;
A = BigInteger('12345678934');
B = BigInteger('10');
for i =1:double(10)
i = BigInteger('i');
X(i) = i.multiply(A);
end
I'm facing the following error
Java exception occurred:
java.lang.NumberFormatException: For input string: "i"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:580)
at java.math.BigInteger.<init>(BigInteger.java:470)
at java.math.BigInteger.<init>(BigInteger.java:606)
How to resolve this issue?
Thanking in anticipation.

Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de Feb. de 2022
import java.math.*;
A = BigInteger('12345678934');
B = BigInteger('10');
for i =1:double(10)
iB = BigInteger(i);
X(i) = iB.multiply(A);
end
X(1), X(2), X(end)
ans = 12345678934 ans = 24691357868 ans = 123456789340
  2 comentarios
Walter Roberson
Walter Roberson el 27 de Feb. de 2022
If i can reach more than 2^53 then you would need a slightly different approach.
Ammy
Ammy el 27 de Feb. de 2022
Thank you very much!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by