- 授权协议: MIT
- 开发语言: Python
- 操作系统: Windows
- 软件首页: https://github.com/shuge/helper_datetime
- 软件文档: http://isadoranun.github.io/tsfeat/FeaturesDocumentation.html
软件介绍
Tsfeat 是一个能够按照时间顺序分析运动轨迹工具。通常可以运用在气象数据中心的风速分析,股市中的股价的变化等领域。
示例代码:
#We open the ligth curve in two different bands
lc_B = FATS.ReadLC_MACHO('lc_1.3444.614.B.mjd') #58.6272.729 1.3444.614 1.4652.1527
lc_R = FATS.ReadLC_MACHO('lc_1.3444.614.R.mjd')
#We import the data
[mag, time, error] = lc_B.ReadLC()
[mag2, time2, error2] = lc_R.ReadLC()
#We preprocess the data
preproccesed_data = FATS.Preprocess_LC(mag, time, error)
[mag, time, error] = preproccesed_data.Preprocess()
preproccesed_data = FATS.Preprocess_LC(mag2, time2, error2)
[mag2, time2, error2] = preproccesed_data.Preprocess()
#We synchronize the data
if len(mag) != len(mag2):
[aligned_mag, aligned_mag2, aligned_time] = FATS.Align_LC(time, time2, mag, mag2, error, error2)
else:
aligned_mag = mag
aligned_mag2 = mag2
aligned_time = time
lc = np.array([mag,time,error,mag2,aligned_mag, aligned_mag2, aligned_time])
深入浅出Struts 2
Budi Kuniawan / 杨涛、王建桥、杨晓云 / 人民邮电出版社 / 2009-04 / 59.00元
本书是广受赞誉的Struts 2优秀教程,它全面而深入地阐述了Struts 2的各个特性,并指导开发人员如何根据遇到的问题对症下药,选择使用最合适的特性。作者处处从实战出发,在丰富的示例中直观地探讨了许多实用的技术,如数据类型转换、文件上传和下载、提高Struts 2应用的安全性、调试与性能分析、FreeMarker、Velocity、Ajax,等等。跟随作者一道深入Struts 2,聆听大量来之......一起来看看 《深入浅出Struts 2》 这本书的介绍吧!
