how to extract some elements in the array using matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
M.S. Khan
el 3 de Dic. de 2020
I have an array vector. i want to extract some elements.
How will i perform. Please help me. Regards for all your coopeartion.
how to extract only the elements which are in the range between 0 and 3.
Slice_z
Slice_z = Slice_z(Slice_z >= 0 && Slice_Z<=3)
0 comentarios
Respuesta aceptada
Deepak Gupta
el 3 de Dic. de 2020
Hello Mr. Khan,
Slice_z = Slice_z(Slice_z >= 0 & Slice_Z<=3)
Should work.
Cheers,
Deepak
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Graph and Network Algorithms 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!