For a given multi dimensional matrix and given element, find its offset from the 1st element.
Return 0, if element is not found in the matrix.
If the element is repeated in the matrix, then return the offset of its first occurrence in the matrix.
E.g. M(:,:,1) = [1 2 3; 4 5 6] M(:,:,2) = [10 20 30; 40 50 60]
Element is 50, then its offset = 10
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers44
Suggested Problems
-
116930 Solvers
-
How to find the position of an element in a vector without using the find function
2822 Solvers
-
Back to basics 25 - Valid variable names
340 Solvers
-
Who has power to do everything in this world?
490 Solvers
-
Create a two dimensional zero matrix
532 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
What do you mean whit the word "offset"?