- 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 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Hassaan
2024-2-4
% 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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!