I am going through some C++ code to determine how it operates ( I don't know the language very well yet myself) and I ran into some lines that look like this:
  bw = 2.*ti/3.;           rorq = ((bw/to)**(1./q));
Is there any particular reason that the code would be using .*ti instead of just *ti? Does it have something to do with the variables?
 
    