How to change a bit of matrix from 0 to 1

조회 수: 1 (최근 30일)
Afluo Raoual
Afluo Raoual 2021년 3월 12일
편집: Afluo Raoual 2021년 3월 15일
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'.

채택된 답변

David Hill
David Hill 2021년 3월 12일
M(6:11:end)=1;%for your Matrix M
  댓글 수: 3
David Hill
David Hill 2021년 3월 12일
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 2021년 3월 12일
Thank you so much

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by