Creating a 15x15 matrix with certain specifications

16 次查看(过去 30 天)
Hello everyone,
I am having trouble constructing a 15x15 matrix with the following specifications:
- it should only contain three numbers (0, 1, 2)
- there should be 110 0s (48.89% are zeros)
- there should be 110 1s (48.89% are ones)
- there should be 5 2s (2.22% are twos)
Any hints and explanations are greatly appreciated

采纳的回答

Star Strider
Star Strider 2016-3-11
You didn’t say if you wanted it to be random or non-random.
I would create the initial vector as:
v = [zeros(1, 110) ones(1, 110) 2*ones(1,5)];
then for a non-random matrix, just use the reshape function, and for a random matrix, use the randperm function first, then reshape.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by