Posts by Eduardo Leal • 1 point
3 posts
-
0
votes1
answer1262
viewsA: Sum of matrices in java matrix A+ matrizB, results in matrix C
Instead of this int sum, create the direct matrizC and assign the values. int[][] matrizC; if (N == O && M == P) { for (int i = 0; i < matrizB.length; i++) { for (int j = 0; j <…
javaanswered Eduardo Leal 1 -
0
votes1
answer162
viewsA: How to take the Jinternalframe Side Options Button
Try to put this in the class builder. setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0)); BasicInternalFrameUI bi = (BasicInternalFrameUI)this.getUI(); bi.setNorthPane(null); This…
javaanswered Eduardo Leal 1 -
0
votes1
answer205
viewsA: Store data from a variable that changes value at each instant
Well you can do the following, every second, assign the values that "data" receive and put in a list. values = [] while 1: dados = I_want_money.get_realtime_candles("EURUSD", 1) values.append(dados)…