Standart deviation between two matrix
18 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have a matrix A 100*6 and and a matrix B 100*1.
I would like to compute de standart deviation between each columns of Matrix A with the matrix B.
Thank you
0 件のコメント
採用された回答
Wayne King
2014 年 2 月 8 日
What do you mean "between two matrix"
std() on a matrix returns the standard deviation of the columns
A = randn(100,6);
std(A)
B = randn(100,1);
std(B)
2 件のコメント
Wayne King
2014 年 2 月 8 日
You have to specify what you mean by std between the columns, the std of the difference, or the sum, or the product?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Mathematics and Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!