An array which stores values with 2 indices

learn more… | top users | synonyms

0
votes
0answers
30 views

Map ajax response data to google line chart

I'm using the following code to create a line chart using the google charts api. var array = []; ajaxPost(action, "getData", params, function(data) { var response = ...
0
votes
1answer
15 views

Python issue editing tkinter canvas items in a 2darray

I'm using a raspberry pi as a communication front end for more complex devices. I'm coding it in python, and including a gui to display the information going through it. My issue involves a grid of ...
1
vote
2answers
53 views

2D arrays passed through functions in c

I'm having a problem with my program. I need my program to read from a text file, the first consists of the dimensions of the 2d array the rest is the contents of the array. I have coded the readWord ...
0
votes
0answers
26 views

How do you change JLabel text when JLabel is in a 2D Array?

I am making a game similar to reversi and i have a JLabel 2D Array, but im having trouble renaming the JLabels. Here is the block of code where im trying to rename the JLabels in the array. The array ...
0
votes
2answers
60 views

Assigning values to 2D array created using malloc

I created a 2D character array using malloc and have been trying to assign its values to '\0'. char **predicate_array = malloc(no_of_lines_in_data_map); for(int i = 0; i < ...
0
votes
1answer
35 views

Bash Arrays - Couldn't extract the assigned variable from the array(2D)

I used the array assignment below in order to simulate a two dimensional array: for((i=0;i<2;i++)) do for((j=0;j<3;j++)) do read TWOD$i[$j] ...
-1
votes
0answers
22 views

Ruby change self parameters for 2D array

I have a class that enables to do that : $my_array_class[0] = 3 Codes : def [](id) @data[id] end def []=(id, value) @data[id] = value end So how can I do that for 2D arrays like: ...
2
votes
1answer
33 views

For an X dimensional array where X is greater than 1,is only the first dimension optional,rest are mandatory?

I am trying to get my head around this but since I am new to C I just can't imagine how it will be at or beyond 3D arrays.I know we have to mention the size of static 1D arrays,but in 2D arrays,the ...
1
vote
3answers
50 views

For “int demo[4][2]”,why are all these same in magnitude: &demo[1],demo[1],demo+1,*(demo+1) ?What about type?

Just when I had relaxed thinking I have a fair understanding of pointers in the context of arrays,I have fallen face down again over this following program.I had understood how for an array arr,arr ...
-2
votes
2answers
44 views

Adding an array of doubles to an array list gives me weird (hex?) values - java

I'm getting problems when i try to add an array of doubles to an ArrayList. ArrayList<double[]> vok = new ArrayList<double[]>(); And the method I'm having issues with is: public ...
0
votes
1answer
54 views

foreach loop in 2D Arrays in C++

I have a 3x3 2D array. I want to reach to all of it's elements. Is it possible? I do this: int myArray[3][3]; for(int &i: myArray){ //MY CODE HERE. } But when I do, I get error: error: ...
1
vote
2answers
53 views

How do I return a 2d array in my function?

I was wondering how I can return a 2d array in my function. My code is something like this: int[][] function () { int chessBoard[x][x]; memset(chessBoard,0,x*x*sizeof(int)); return ...
0
votes
3answers
48 views

Initialising a 2d-array with zeros; printing its values reveals that not every element contains a 0

I already searched for an answer here, but I couldn't find something that suits my case. I have a function make_array(), which generates a 2-dimensional array, and has to fill it with zeros. When ...
0
votes
2answers
50 views

using fwrite and double pointer to output 2D array to file

I've dynamically allocated a 2D array, accessed w/ a double pointer, like so: float **heat; heat = (float **)malloc(sizeof(float *)*tI); // tI == 50 int n; for(n = 0; n < tI; n++){ // tI ...
2
votes
1answer
68 views

How to find largest figure in 2d array

I have image with example of matrix with marked cells in it which makes a figures. The thing is, that I have to count and find the largest figure in the matrix. As we can see there is 3 figures ...
0
votes
2answers
63 views

C : Array of strings - Can input only n-1 strings for an input size of n

I have to sort strings in a lexicographical order using the Bubble Sort technique without using any library functions. I have written the following code which is working fine in sorting the strings. ...
0
votes
1answer
24 views

Error: Array bound not integer constant in Header

I have 2D arrays in header files, for which I declared the sizes of both: int numPaths = 2; int pathLength = 11; double x[numPaths][pathLength] = {{62, 114, 0, 73, 55, 21, -28, -93, 0, 0, ...
0
votes
1answer
39 views

Get Index of 2D Array in an ArrayList

I have an ArrayList filled with objects in a 2D Array. I want to get the indexes of the Object in the 2D Array at the index of the ArrayList. For example: Object map[][] = new Object[2][2]; ...
1
vote
4answers
65 views

2D Array Index Out of Bounds Exception

I am new to 2D Arrays, and while I think I understand it, I am unsure why I am getting this Index Out of Bounds Exception. I tried making the map size 70x100, and I still received the same error. It ...
0
votes
1answer
18 views

How to Display 2D char Array on UIView. iOS

I have a 2D char Array, needed to display on a View. for example I have array as- char charArray[4][10] = {' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ', ' ',' ',' ', A,m,i,t ...
0
votes
1answer
44 views

Creating data structures in PHP

I have a problem where I have to convert a 2D array into a data structure that's efficient for printing out a table for a scheduler. The link to the problem is http://goo.gl/rRUsj [Opens in Google ...
0
votes
0answers
69 views

Scale 2D-Array using Bicubic Interpolation

I want to scale an arbitrary double[][] to another double[][] with different dimensions. The values of the resulting array should be calculated based on the input array using bicubic interpolation. I ...
0
votes
3answers
98 views

Arraylist to 2D array and then to a JTable

i'm struggeling to make my arraylist into an 2D array and then adding it on a table to show the data. import java.awt.*; import javax.swing.*; import java.util.ArrayList; import java.util.List; ...
0
votes
2answers
126 views

Tic Tac Toe Game 2D Array

My code runs, but it doesn't print out anything in the board. I'm pretty sure i have done a couple of things wrong, and if someone could point me in the right direction, that would be great.. Thanks ...
0
votes
1answer
17 views

Is there a fast way to loop around a 2d array's boarder/edge?

As indicated by the question. I'm doing an assignment where the boarder is defined to be some number while the inner 2d array need some calculation. I wrote: for(int col = 0; col < this.w; ...
0
votes
0answers
56 views

2D arrays and Game of Life

Game of Life -- I can't quite understand how to properly check for neighbors.. Can anyone tell me why my right border and top border arn't acting properly, that is anything placed in them is deleted? ...
-2
votes
2answers
54 views

Infinite for loop with 2d array [closed]

I'm having a problem fixing this infinite loop. I've done some tests so I'm pretty sure the loop isn't when reading the file. Right after "printReportHeading();" is a for loop. I am pretty sure that ...
0
votes
0answers
18 views

Java: Sugarscape simulation, filling the grid with sugar

In one of my classes, we are creating the Sugarscape simulation using Java. For those of you that aren't familiar with this, it basically simulates how an economy forms. In this simulation, various ...
0
votes
1answer
35 views

How can I let users to input values into the sudoku board?

I'm having trouble generating and inserting numbers inside the Board. And I'm really lost, I just can't figure out what to do. Maybe I'm over thinking it. Please help me out. Here is what I have ...
2
votes
1answer
55 views

How to print the maximum valued path in a 2D array in Java?

I guess you all know the "strawberry" problem that some give you in job interviews, where you need to calculate the path between 2 corners of a 2D array that you can only move up or to the right and ...
2
votes
2answers
69 views

How do I hide numbers from a table of sudoku?

I'm trying to write a program that will give the user a sudoku puzzle to solve. But I'm stuck on hiding numbers by difficulty level. How do I do that? any suggestion?
0
votes
2answers
44 views

sending array index value to an int c

I'm trying to get the value from array[i][] where i is the value that I need and want to store it in a variable that is going to be used for different things. I'm not sure how I would go about doing ...
0
votes
2answers
95 views

Minesweeper program java x and y on 2d array are switched

im creating a code for Minesweeper and trying to implement a GUI. But the problem is that when i run the code and play the game, the position i click on the board reveals the y,x coordinate of that ...
-2
votes
1answer
54 views

2d arrays printing backwards [closed]

Im trying to print this 2d array backwards instead of the way its printing. Its currently a 2d array based on user input. so user enters 2 2 for array size and enters numbers 1234 in array it prints ...
0
votes
2answers
36 views

Runtime Exception while with 2d array

I wrote a class that has a 2d array that grows based on user input and allows user to enter numbers in array. The user would enter 2 2 for the size and 2 4 5 4 for the numbers It would print out like ...
-2
votes
2answers
65 views

Why C program 2D array second line replace first line

i pass buf to array first is schArray[i][0] = buf; for example i need buf into schArray ABCDEFG to [0][0] 1234567 to [1][0] but i cannot doing this result my result second line replace first ...
-1
votes
2answers
51 views

growing the size of an array based on issue input

I wrote a class that has a 2d array. The class will print out the numbers of an array based on user input and size. For example the user input will be like 2 3 145464. This means that the array size ...
0
votes
3answers
50 views

Scanning for input without storing the values in a variable

I'm declaring a 2d Array with 100 rows and columns. Im trying to get the user to dictate the numbers that go into the array. Im supposed to store the values without storing them in a variable. This is ...
0
votes
1answer
34 views

3d array as function argument

I have a function which takes a 2d-array as an argument. Then I have a 3d-array e.g. temp[5][100][100]. I want to pass the 2d portion of this array to the function. How can I do this? int ...
-1
votes
1answer
62 views

c stdin 2d array file input [closed]

I'm trying to take a file that is designed to look like a maze and create a 2d array using stdin. I'm not sure how I start with this. I have the 2d array created, but I'm not sure on the function ...
0
votes
0answers
9 views

Charting Ping delays in a 2D array

Basically what I am trying to do is to put the delay coming back from the network connection onto a line chart! I go to the cmd and ping my connection(172.16.80.1) I want to chart the delay that I ...
0
votes
2answers
68 views

Allocating memory for a 2d array of pointers wrapped within an struct in C

Let's say I have a struct named 'Foo' and inside of that I have a 2d array of pointers typedef struct Foo { Stuff* (*stuff)[16]; } Foo; I have an initializeFoo function like ...
0
votes
1answer
42 views

Large 2D double array in Java

I try to initialize 2D double array in java, this double array has 1000 rows and 50 cols. when I did that I got this error: Too many constants, the constant pool for ClassName would exceed to 65536 ...
0
votes
2answers
48 views

2D array - invalid initializer in C?

Hey guys I'm trying to initialize a 2D char array but am having trouble. int size = 300 * 400; char * frame[3] = malloc(sizeof(char *)*size*3); Gives m: error: invalid initializer. So I tried: int ...
0
votes
1answer
18 views

1-d combined with 2-d array. Need functions calls for within main

I have a 1-d array and a 2-d array. I have them both in a function that I am using to read in information from a .txt file. I have my arrays all set up and my functions set up correctly to my ...
0
votes
0answers
86 views

2D String Arrays and the Game of Life

all I'm looking for is some concepts explained to me. Maybe a short example. I was given the task of create a cheap knockoff of the Game of Life with the following parameters. 1) 25x25 board that's ...
1
vote
1answer
67 views

Inserting a text file into 2d array

I want to read a text file and insert it into 2d double array. I have this code, but the first problem is that it doest not read the last column and the second problem is that it returns just the ...
0
votes
2answers
116 views

Drawing a maze using a 2d array with the same layout

I'm creating a grid-based maze game and I'm currently using a 10 x 10 2d integer array to deal with drawing the maze and simple collision detection. My problem, is that when drawing the grid using ...
-1
votes
0answers
72 views

Intersection between more than two 2d array

Suppose that we have three 2d arrays such as: The first one is: 11 23 33 12 21 34 12 23 31 13 24 32 The second one is: 12 21 34 11 23 33 12 24 31 13 24 32 and the third one is: 12 24 ...
0
votes
2answers
39 views

One number appears only once?

So I've been trying to write a function for which will generate numbers for a sudoku puzzle. this is what it looks like I'm kind of lost at the very last line... How can i check if one number only ...

1 2 3 4 5 12