Effacer les filtres
Effacer les filtres

want to generate this matrix

3 vues (au cours des 30 derniers jours)
VASUNDHARA V
VASUNDHARA V le 12 Fév 2022
Modifié(e) : DGM le 12 Fév 2022
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]

Réponse acceptée

DGM
DGM le 12 Fév 2022
Modifié(e) : DGM le 12 Fév 2022
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.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by