How to use fix() In MATLAB

The fix() function is used to round the specified values towards zero.

Syntax:

fix(A)

Here, fix(A) is used to round the specified elements of A toward zero which results in an array of integers.

Example:

Matlab




% MATLAB code for removal
% of decimal points with fix()
% Initializing some values
A = 3.000;
B = 1.420;
C = 0.023;
  
% Calling the fix() function over
% the above values
fix(A)
fix(B)
fix(C)


Output:

ans =  3
ans =  1
ans = 0

How to remove decimal in MATLAB?

In this article, we are going to discuss the “Removal of decimal point” in MATLAB which can be done using sprintf(), fix(), floor(), round() and num2str() functions which are illustrated below.

Similar Reads

Using sprintf()

The sprintf() function is used to write formatted data to a string....

Using fix()

...

Using floor()

The fix() function is used to round the specified values towards zero....

Using round()

...

Using num2str( )

The floor() function is used to round the specified values towards minus infinity....