how to prin only integer value in matlab ?
    62 views (last 30 days)
  
       Show older comments
    
Hello guys, I need some help. I have two output values, etc:
       avg=num/2
       avg2=num2/2
and first value is for example 94, other 93.5, I need other value to be 94 or 93 not 93.5, can anyone help me ? thanks !
0 Comments
Answers (2)
  Jos (10584)
      
      
 on 16 May 2014
        Is this only for display purposes?
x = 1/7
disp(x)
disp(fix(x))
disp(floor(x))
disp(num2str(x,'%.0f'))
0 Comments
See Also
Categories
				Find more on Logical in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

