15 May 2024 02:19:19 PM normal_dataset(): C++ version Generate a multivariate normal random dataset. The program requests input values from the user: * M, the spatial dimension, * N, the number of points to generate, * SEED, a positive integer. * MU, the mean vector of length M. * A, the MxM variance-covariance matrix. The program generates the data, writes it to the file normal_M_N.txt where M and N are the numeric values specified by the user. Spatial dimension M = 2 Number of points N = 1000 The seed is = 123456789 The mean vector M: 0 1 1 2 The variance-covariance matrix A: Col: 1 2 Row 1 1 0 2 0 3 The data was written to the file "normal_2_1000.txt". normal_dataset(): Normal end of execution. 15 May 2024 02:19:19 PM