want to generate this matrix

3 次查看(过去 30 天)
Hello
I want to generate this below matrix in matlab..i am trying ones ,zeros and eye command but not getting this one
[1100010
1000010
1110010
0001101
0000010]

采纳的回答

DGM
DGM 2022-2-12
编辑:DGM 2022-2-12
What's wrong with
A = [1 1 0 0 0 1 0;
1 0 0 0 0 1 0;
1 1 1 0 0 1 0;
0 0 0 1 1 0 1;
0 0 0 0 0 1 0];
If the location of the elements of the array is independent of any other variable, and if there is no clear pattern to their distribution, then it might as well be a literal constant.
I suppose you could also do:
A = zeros(5,7)
A([1 2 3 6 8 13 19 24 26 27 28 30 34]) = 1;
but I don't know that it saves much.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by