Posts by Mutante • 173 points
6 posts
-
0
votes1
answer24
viewsQ: Use class data in multiple Jframes
I am developing an application with several JFrames, I created a class called Person with several attributes to be used in JFrames application. My main question is: where should I instantiate this…
-
1
votes0
answers75
viewsQ: Changing the parameter of a java method
I am developing a code that uses ECC encryption. I am using the following code: import java.security.*; import java.security.spec.*; public class Teste { public static void main(String[] args) {…
-
2
votes3
answers161
viewsQ: Size of a character array according to its addressing
Is the size of a character array given by its address or by the value of the variable? Example: char[1000] = "Exemplo Teste" The size of this variable is 1KB due to its addressing char[1000] or her…
-
1
votes2
answers78
viewsQ: Loop step size for MATLAB
I have the following loop in MATLAB, I would like to know how I can increase my k variable from 0.15 to 0.15 until 10. for k=1:1:10 %... end
-
-3
votes1
answer114
viewsQ: Performance difference between C and Matlab
Friends, I created two apparently identical encryption codes, one in C language and the other in Matlab, the code in Matlab has more functions, that is, it is more extensive and performs more…
-
1
votes1
answer355
viewsQ: Add lines in a Jtable according to ascending order
I’m making a RBC system to verify the similarity between computers. I would like to sort my table rows by the value of probability. The problem is that the table has around 9,500,000 rows. Does…