Thank you for the response, but I want to construct two vectors U and V . They both have normally distributed random entries with zero mean, and also .
Normally distributed, with zero mean. You don't say if the sample mean should be zero, or the population mean zero. Normal samples from randn have a zero popiulation mean. But the sample mean just has an expected value of zero. A subtle difference that few people seem to appreciate when they lack the proper background.
Anyway, it is easy enough to scale them so the dot product is also 1. I could keep them as separate vectors, since that seems to have confused you, but you need to LEARN TO USE MATRICES.
uv = randn(1000,2);
dp = uv(:,1)' * uv(:,2);
uv = uv/sqrt(abs(dp));
if dp < 0
uv(:,1) = -uv(:,1);
end
As you can see, the dot product is 1. Note that the code I gave you will not end up 50% of the time with an imaginary square root.
uv(:,1)'*uv(:,2)
ans =
1
mean(uv)
ans =
-0.00248985528111534 -0.00172138844051432
The sample means are not identically zero, but you were not specific there, and that is simply repaired.
Do you really think you need disrinctly named vectors? LEARN TO USE MATLAB! The mat in MATLAB stand for matrix.
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
0 件のコメント
サインインしてコメントする。