Answers for "converting 1d array to 2d array"

C++
0

2d to 1d array python

import numpy as np  
ini_array1 = np.array([[1, 2, 3], [2, 4, 5], [1, 2, 3]])
result = ini_array1.flatten()
Posted by: Guest on August-01-2021
1

array 2d to 1d

int array[width * height];

 int SetElement(int row, int col, int value)
 {
    array[width * row + col] = value;  
 }
Posted by: Guest on January-28-2020

Browse Popular Code Answers by Language