How to form a matrix as our requirements??????
1 次查看(过去 30 天)
显示 更早的评论
Hello
I wanna create a matrix as size is 50rows 6 columns.The sum of each row is 100. the value limits is 0 to 100 its may be float value .For example of one row is
[20 40 10 5 5 20]
0 个评论
采纳的回答
Ameer Hamza
2020-4-25
x = rand(50, 6);
x = x./sum(x,2)*100;
Result
>> sum(x,2)
ans =
100.0000
100.0000
100.0000
..
..
..
100.0000
100.0000
4 个评论
Ameer Hamza
2020-4-26
This is already in quite the simplest form. Any further simplification can only be done by defining your own function.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Detection 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!