What the two columns represnt when i generate a multivarite normal random numbers

1 vue (au cours des 30 derniers jours)
I run the following command to genrate two variables joint normally distributed with mean Mu and covariance matrix Sigma, which are defined below
MU=zeros(2,1)
sigma=[1 0.7;0.7 1]
M=mvnrnd(MU,sigma,N)
Then it genartes N,2 vector. But I want to know what the two columns represent.
Thank you!

Réponse acceptée

Jeff Miller
Jeff Miller le 1 Déc 2019
The two columns represent the two variables measured for each case, and the N rows represent the N randomly selected cases from this bivariate normal distribution. For example, the cases/rows might be analogous to people, and the variables/columns analogous to their heights and weights.
  4 commentaires
Fissha Marye
Fissha Marye le 2 Déc 2019
Many thanks Jeff,
Could you explain about error: horizontal dimensions mismatch (1000x1 vs 499x1).
I am running the following code
X=2+5*w+e
Y=10+3*X+i
Now I want to use x and y to run an OLS and I save as a dtagrid using dataGrid = [Y X(:,1)]
data = importdata(filename,delimiterIn,headerlinesIn);
Y= data.data(:,1)
y_lab = data.colheaders{1}
x = [ones(N,1),data.data(:,2)]
x_lab = data.colheaders{2}
But I got the error message
horizontal dimensions mismatch (1000x1 vs 499x1). In my case I want to use N=1000
Jeff Miller
Jeff Miller le 2 Déc 2019
Sorry, I don't see what's going on with that.
You'd better open a new question.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by