scipy.constants.
nu2lambda#
- scipy.constants.nu2lambda(nu)[源代码][源代码]#
将光频率转换为波长。
- 参数:
- nuarray_like
要转换的光频率。
- 返回:
- lambda浮点数或浮点数数组
等效波长。
注释
计算
lambda = c / nu
其中 c = 299792458.0,即,光在真空中的速度,单位为米/秒。示例
>>> from scipy.constants import nu2lambda, speed_of_light >>> import numpy as np >>> nu2lambda(np.array((1, speed_of_light))) array([ 2.99792458e+08, 1.00000000e+00])