please, any one help me to trunct the integer number from real number without any round to nearest integers in matlab ,e.g: if i have 255/64=3.98 I need just 3 not 4. I used fix in my program but not work. my cod is:
S=imread('image0286.jpg')/64;
disp(fix(S);
this give me the output after rounds the elements of S to the nearest integers not cut the integer.