Info
この質問は閉じられています。 編集または回答するには再度開いてください。
urgent help please :::::( how can ı solve this ?
1 回表示 (過去 30 日間)
古いコメントを表示
mu=[1 1]';
p=0;
sigma=[1 2*p;2*p 4];
x= mu+sigma.*randn(1000,2);
this code gives me inner product error.
2 件のコメント
Walter Roberson
2016 年 3 月 18 日
Duplicates http://www.mathworks.com/matlabcentral/answers/274134-urgent-i-can-not-fix-this-error-error-using-inner-matrix-dimensions-must-agree-on-this-co . Please discuss the question there, not here.
Adam
2016 年 3 月 18 日
Putting "urgent" in a question title is more likely to just irritate people than persuade them to answer your question quickly. Everyone's work is urgent to themselves and not to anyone else. People will help if and when they can, irrespective of how urgent something is.
回答 (2 件)
Guillaume
2016 年 3 月 18 日
編集済み: Guillaume
2016 年 3 月 18 日
- You need to be aware of the difference between element-wise multiplication and matrix multiplication
- Note the presence of i in the formula of the transformation. It is significant. To make x, you're either going to have to use a loop or bsxfun with some reshaping (with permute) of y.
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!