Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
I have the following example matrix:
1 2 3
0 0 0
0 0 0
4 5 6
7 8 9
0 0 0
1 1 1
I'm trying to write a function that processes this matrix to eliminate Zero values, such that result is:\
1 2 3
4 5 6
7 8 9
1 1 1
Any help/suggestions would be appreciated.
Thanks,
Matt
Solved! Go to Solution.
Thank you!