Java Millisecond Format microseconds2milliseconds(double us)

Here you can find the source of microseconds2milliseconds(double us)

Description

microsecondsmilliseconds

License

Open Source License

Declaration

public static double microseconds2milliseconds(double us) 

Method Source Code

//package com.java2s;
/*/* w w  w.j  a v  a2 s  .c om*/
 Copyright (C) 2017, 2018 Bengt Martensson.

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the License, or (at
 your option) any later version.

 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 General Public License for more details.

 You should have received a copy of the GNU General Public License along with
 this program. If not, see http://www.gnu.org/licenses/.
 */

public class Main {
    public static double microseconds2milliseconds(double us) {
        return 0.001 * us;
    }
}

Related

  1. getMvoDateFormatForMilliSecond()
  2. getReadableMillis(long startMillis, long endMillis)
  3. getReadableMillisTime(long millis)
  4. getTime(long timeInMillis, SimpleDateFormat dateFormat)
  5. getTimeInMillis(String dateString, String format)
  6. millis2hms(final long t)
  7. millis2samples(long ms, double sampleRate)
  8. millis2seconds(long millis)
  9. millis2String(long n)