I wonder how to get quotient in integer division in MATLAB? Thanks and regards!

3 Answers

Use idivide:

C = idivide(A, B) is the same as A./B except that fractional quotients are rounded toward zero to the nearest integers.

There's a third optional parameter for controlling the rounding behavior that's explained on the MathWorks site that I linked to.

Simply, put as following:

floor(A/B) 

floor command rounds the value to the nearest integer, towards negative infinity (-inf).

just divide and round down?

or are you talking about integer division, in which case use idivide

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy