How to change a bit of matrix from 0 to 1

1 Ansicht (letzte 30 Tage)
Afluo Raoual
Afluo Raoual am 12 Mär. 2021
Bearbeitet: Afluo Raoual am 15 Mär. 2021
Dear members,
I have a matrix
and I have to write a program that verify if the final bits are '0' or '1'. If final bits are '0' the program change them to '1'.

Akzeptierte Antwort

David Hill
David Hill am 12 Mär. 2021
M(6:11:end)=1;%for your Matrix M
  3 Kommentare
David Hill
David Hill am 12 Mär. 2021
6=size(M,1)+1
11=size(M,1)*2+1
M(size(M,1)+1:size(M,1)*2+1:end)=1;
Afluo Raoual
Afluo Raoual am 12 Mär. 2021
Thank you so much

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by