tagged [multidimensional-array]

How to get the length of row/column of multidimensional array in C#?

How to get the length of row/column of multidimensional array in C#? How do I get the length of a row or column of a multidimensional array in C#? for example:

13 Aug at 19:45

C# Arrays - string[][] vs. string[,]

C# Arrays - string[][] vs. string[,] > [What is differences between Multidimensional array and Array of Arrays in C#?](https://stackoverflow.com/questions/597720/what-is-differences-between-multidime...

23 May at 12:32

Return a 2d array from a function

Return a 2d array from a function Hi I am a newbie to C++ I am trying to return a 2d array from a function. It is something like this

23 Dec at 15:25

Syntax for creating a two-dimensional array in Java

Syntax for creating a two-dimensional array in Java Consider: Is this how you create a two-dimensional array with 5 rows and 10 columns? I saw this code online, but the syntax didn't make sense.

17 Jan at 00:44

Get the size of a 2D array

Get the size of a 2D array Okay, so I have a 2D array z[50][50] and z's size is therefore 50 * 50, but if I say z.length I only get 50 back. How do I get the real size of a 2D array?

6 Nov at 01:19

Multidimensional Array [][] vs [,]

Multidimensional Array [][] vs [,] ``` double[][] ServicePoint = new double[10][9]; //

11 Mar at 19:30

Transforming a row vector into a column vector in Numpy

Transforming a row vector into a column vector in Numpy Let's say I have a row vector of the shape (1, 256). I want to transform it into a column vector of the shape (256, 1) instead. How would you do...

Copy one 2D array to another 2D array

Copy one 2D array to another 2D array I used this code to copy one 2D array to another 2D array: However, when I change some data in `tempPerformance` then these changes also apply to `teamPerformance...

31 Mar at 04:20

What is the difference between ndarray and array in NumPy?

What is the difference between ndarray and array in NumPy? What is the difference between [ndarray](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html) and [array](https://numpy.org/d...

Sort array of objects by one property

Sort array of objects by one property How can I sort this array of objects by one of its fields, like `name` or `count`? ``` Array ( [0] => stdClass Object ( [ID] => 1 [name] => Mary...