How to delete multiple of the Value in Array
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Med Future
el 20 de Dic. de 2022
Comentada: Rik
el 29 de Dic. de 2022
Hello, I have the following array I want to delete the values, which are multiple of any values
How can i do that in MATLAB
1 comentario
Rik
el 29 de Dic. de 2022
Why did you post a duplicate question instead of responding that this isn't what you wanted?
Respuesta aceptada
C B
el 20 de Dic. de 2022
A = [1 2 3 4 5 6 7 8 9 10] % Initial array
A(mod(A,3) == 0) = [] % Delete elements that are multiples of 3
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!