question

Jonathan avatar image
1 Like"
Jonathan asked Joerg Vogel edited

Can someone explain Math.fmod() vs using a % operator?

Working on a decision point in Flexscript I wanted to use a modulo math operator like I can within Excel. I started tinkering with this:

if (current.labels.assert("roundRobinVal", 1).value % 2) == 0) {...then do stuff...}

But no matter what I did the % did not seem to behave like I anticipated.

I then found Math.fmod() and made this:

if (Math.fmod(current.labels.assert("roundRobinVal", 1).value, 2) == 0) {...then do stuff...}

and it worked perfectly.

I am incrementing the roundRobinVal after the if().

I also don't understand the ", 1" in the latter portion of the .assert().

FlexSim 20.2.3
flexscriptflexsim 20.2.3mathfmod
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Matthew Gillespie avatar image
3 Likes"
Matthew Gillespie answered

The F in fmod stands for float and doesn't round to the nearest integer like % does, for example:

  1. 3.4 % 2                  //    1
  2. Math.fmod(3.4, 2)        //    1.4
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jason Lightfoot avatar image
1 Like"
Jason Lightfoot answered Jason Lightfoot commented

The 1 is the initial value of the label in the assert -so the value it will take if it didn't exist.

The % operator should work exactly as fmod - can you post an example?

· 6
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.