Matlab, index of minimum values in array along one dimension?
-
Assume I=n*m*p [n=2, m=2, p=3 for example below] I(:,:,1) = 8 26 40 80 I(:,:,2) = 43 18 91 26 I(:,:,3) = 15 87 14 58 I want to create a matrix that shows the index of the minimum value going across the 3rd coordinate. For example, for above it would be J=[1 2 3 2] Since [8, 43, 15] has min at index 1 [26, 18, 87] has min at index 2 [40, 91, 14] has min at index 3 [80, 26, 58] has min at index 2 I can do it with a double for loop, but would like to know how to do it vectorized, as the first two dimensions could be quite big. (The third dimension <10). Thanks! -MIke
-
Answer:
You just need to read the syntax on the max function. Try [val,ind]=max(J, [ ], 3). This gives you the value (val) and the index (ind) of the max of the tensor J along the third dimension.
Mike S at Yahoo! Answers Visit the source
Related Q & A:
- How to post an array of complex objects (that has an array of complex objects) with jQuery?Best solution by Stack Overflow
- How to save values to an array?Best solution by Stack Overflow
- how can i remove an array from an array?Best solution by Stack Overflow
- Will this fit in my dimension 9100?Best solution by Yahoo! Answers
- What are the minimum and maximum values?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.