It says my vector is out of range for ArrayD. But I do not understand why. Everything else works. Is says that the vector is out of range after double deez. Therefore, it will not ascend fully.
using namespace std;
void hello();
void Infile();
double x, y, z;
double P, B;
int E = 0;
double V[16];
double C[16];
double D[16];
int m, n;
int main()
{
Infile();
return 0;
}
void Infile()
{
ifstream fileA("P_matrix.txt");
ifstream fileB("b_matrix.txt");
ifstream fileC("d_matrix.txt");
vector<double>ArrayP;
vector<double>ArrayB;
vector<double>ArrayD;
cout << "P Matrix Values \n";
while (fileA.good())
{
    fileA >> P;
    ArrayP.push_back(P);
}
for (int i = 0; i<ArrayP.size(); i++)
{
    cout << ArrayP[i] << ",";
}
system("pause");
cout << "B Matrix Values \n";
while (fileB.good())
{
    fileB >> B;
    ArrayB.push_back(B);
}
for (int j = 0; j < 16; j++)
{
    cout << ArrayB[j] << ",";
}
system("pause");
while (fileC.good())
{
    fileC >> D;
    ArrayD.push_back(D);
}
for (int k = 0; k <16; k++)
{
    cout << ArrayD[k] << ",";
}
system("pause");
for (int m = 0; m < 16; m++)
{
    V[m] = ArrayP[m] * ArrayB[m];
    cout << V[m] << ",";
}
system("pause");
for (int n = 0; n < 16; n++)
{
    C[n] = V[n] * ArrayD[n];
    cout << C[n] << ",";
}
//outfile.close();
system("pause");
double deez;
for (int d = 0; d < 16; d++) //acscending
{
    for (int q = 0; q < 16; q++)
    {
        if (ArrayD[q] < ArrayD[q - 1])
        {
            deez = ArrayD[q];
            ArrayD[q] = ArrayD[q - 1];
            ArrayD[q - 1] = deez;
        }
    }
}
for (int q = 0; q < 16; q++)
    cout << C[q] << ",";
system("pause");
double nutz;
for (int d = 0; d < 16; d++) //descending
{
    for (int q = 0; q < 16; q++)
    {
        if (V[q] < V[q + 1])
        {
            nutz = V[q];
            V[q] = V[q + 1];
            V[q + 1] = nutz;
        }
    }
}
for (int q = 0; q < 16; q++)
    cout << V[q] << ",";
system("pause");
return;
}
 
    