I'm currently trying to generate a 100x100x100 matrix of integers in C++. However, I was running into some stack overflow issues with the general C++ arrays.
My project is already using the Eigen library for Linear Algebra so if possible I'd like to use that but I've been having trouble trying to find reliable implementations for a 3D matrix. I'm strictly going to be using this for coefficient wise math so I don't need to worry about any algebra capabilities. I just need to be able to increment those values.
Any advice? Here is a basic code for how I was getting the stack over flow
#include<iostream>
#include<fstream>
#include<cmath>
#include<vector>
int main()
{
int V1[100][100][100];
return 0;
}