Hi I would like to change only the first few values in a row to zero?
For example I have matrix A=[1 2 4 5 6 7 8 9 0 2 3 4 5 6]
If I want to make the first column until ninth column to be zero, the the new matrix B will be: B=[0 0 0 0 0 0 0 0 0 2 3 4 5 6].
If I want to make the first column until fourth column to be zero, the the new matrix B will be: B=[0 0 0 0 6 7 8 9 0 2 3 4 5 6].
I was thinking something like: A(1,:)=zeros(1,4) but it won't change to zero.
Thank you!

 채택된 답변

Voss
Voss 2021년 12월 28일
A=[1 2 4 5 6 7 8 9 0 2 3 4 5 6]
A = 1×14
1 2 4 5 6 7 8 9 0 2 3 4 5 6
B1 = A;
B1(1:9) = 0
B1 = 1×14
0 0 0 0 0 0 0 0 0 2 3 4 5 6
B2 = A;
B2(1:4) = 0
B2 = 1×14
0 0 0 0 6 7 8 9 0 2 3 4 5 6

추가 답변 (1개)

Image Analyst
Image Analyst 2021년 12월 29일

0 개 추천

@Hokkien you might want to review the short training to go over these basic indexing rules:

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

질문:

2021년 12월 28일

답변:

2021년 12월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by