在matlab中获取当前的GMT

时间:2016-03-23 08:25:59

标签: matlab date time

如果Matlab连接到Internet,如何从Matlab获取GMT中的当前日期和时间。我想创建一个世界时钟,通过向当前GMT添加时间偏移来计算时间。

1 个答案:

答案 0 :(得分:2)

我相信你可以在没有互联网的情况下做到这一点。你可以打电话

Observable<List<City>> cities = Observable.using(
    //resource creation function
    () -> authService.requestToken().toBlocking().single(),
    //observable creation function
    token -> soapClient.consume(new CitiesRequest(token)).map(new CitiesResponseParseFunc())),
    //resource disposal function
    token -> authService.closeSession(token)
);

表示以毫秒为单位的时间。您可以将其转换为更易读的时间,并使用MATLAB的tzoffset将时区更改为GMT。

免责声明:我相信这不会给你国际原子钟GMT,而是当地时间。我现在暂时给出答案。

信用:http://uk.mathworks.com/matlabcentral/newsreader/view_thread/251275