You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matrices and other multidimensional arrays are currently only supported if all dimensions except the first are fixed. The problem with supporting multidimensional arrays is that in C/C++, the parameter type would need to be T** instead of T[][x] and pointers-to-pointers would be needed, instead of the current flat model.
The text was updated successfully, but these errors were encountered:
Matrices and other multidimensional arrays are currently only supported if all dimensions except the first are fixed. The problem with supporting multidimensional arrays is that in C/C++, the parameter type would need to be
T**
instead ofT[][x]
and pointers-to-pointers would be needed, instead of the current flat model.The text was updated successfully, but these errors were encountered: