normalize a row vector
2 ビュー (過去 30 日間)
古いコメントを表示
i have a vector of size A = 1*128.... i wanted to normalize the vector to B, such that when i sum the new matrix B, i get its sum of all column values as 1....
is there any method to do it?... please do reply....
0 件のコメント
採用された回答
その他の回答 (1 件)
Giorgos Papakonstantinou
2014 年 3 月 3 日
If I understood correctly:
A=1:128;
B=A/sum(A);
Then:
sum(B)
ans =
1
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!