Home > Back-end >  What is the meaning of this program?
What is the meaning of this program?

Time:09-20

PP [0] [0] +=Pdot [0] * dt.
PP [0] [1] +=Pdot [1] * dt.
PP [1] [0] +=Pdot [2] * dt.
PP [1] [1] +=Pdot [3] * dt.

CodePudding user response:

A +=b * c;
Is equivalent to:
A=a + b * c.

CodePudding user response:

Number two is multiplied by the number assigned to the third
  • Related