Return first few values to zero in a row
Afficher commentaires plus anciens
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!
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 29 Déc 2021
0 votes
@Hokkien you might want to review the short training to go over these basic indexing rules:
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!