Remove data from matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anonymous User
el 6 de Abr. de 2020
Editada: KALYAN ACHARJYA
el 6 de Abr. de 2020
How i remove the data >30 and <25 ? and how i make a pattern to remove them in any futuer data ?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/282298/image.jpeg)
4 comentarios
KALYAN ACHARJYA
el 6 de Abr. de 2020
Editada: KALYAN ACHARJYA
el 6 de Abr. de 2020
When you remove the element from the matrix, what remains in that location?
Respuesta aceptada
KSSV
el 6 de Abr. de 2020
If A is your array....
You can remove data using:
A(A>30) = [] ;
A(A<25) = [] ;
Or replace them with NaN's, if yu want same size.
A(A>30) = NaN ;
A(A<25) = NaN ;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Multidimensional Arrays en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!