min elemanın index'ini döndüren bir fonksiyon tarzı bir şey de işe yarar.

sort diye bir komut var -adı üstünde- diziyi sıraya diziyor, böylece ilk elemanlar sıra ile en ufakları oluyor.


Şöyle bir şey buldum: "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."
Bir de: "[C,I] = min(...) finds the indices of the minimum values of A, and returns
them in output vector I. If there are several identical minimum values, the index of
the first one found is returned."
Edit: a=[8 7 5 8 19 2 13] olsun. [m, i]=min(a) yapınca m=2, i=6 döndürüyor. Matlab kurulu değil, Freemat'te denedim ama onda da oluyordur.
Bi daha edit: Sort daha iyiymiş. [m,i]=sort(a); i(1:3);


teşekkür ederim cevaplar için.
evet oldu matlab'ta da [m, i]=min(a).
ayrıca evet sort işime daha çok yarar gibi geldi bana da. daha kolay olur yani.
