- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
find subarray for which for which the value of thefirst two colums is zero
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Robert Jones
el 4 de Feb. de 2024
Comentada: Robert Jones
el 4 de Feb. de 2024
Hello
I have an array M(20000000,9).
I need to extract the elements for which the first column value and the second column values are zero.
any ideas?
Thank you
0 comentarios
Respuesta aceptada
Hassaan
el 4 de Feb. de 2024
% Assuming M is your large matrix with size 20000000x9
% Let's create some dummy data for demonstration
rng(0); % For reproducibility
M = randi([-1, 1], 20000000, 9);
% Find rows where the first and second columns are zero
rowsWithZeros = (M(:, 1) == 0) & (M(:, 2) == 0);
% Extract those rows
extractedRows = M(rowsWithZeros, :);
% Display the size of the extracted rows to see how many we've found
size(extractedRows)
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
Feel free to contact me.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!