搜索资源列表
cp-vs-lamb.
- this file to calculate the cp/lambda for different types of pitch angles. the selected wind speed range where the rated wind speed is 9 m/s and beta angle is zero the maximum value of beta is 45 but in the simulation it maximum value will not be m
triplet_src
- In the GIS/GPS world, we represent a position on Earth with three variables XYZ (for Earth centered coordinates) or latitude (phi) , longitude (lambda) and height (h) in polar (PLH) representation. Three-D graphic applications also requires processin
TVdenoise
- 全变分去噪 J=tv(I,iter,dt,ep,lam,I0) 输入: I - 灰度图像, iter - 迭代次数 [1], dt - 时间步长 [0.2], ep - 提升参数epsilon [1], lam - 保真项 lambda [0], I0 - 输入噪声图像 [I0=I] ([]中的是缺省值)- 全变分去噪 J=tv(I,iter,dt,ep,lam,I0) 输入: I - 灰度图像,
cbj
- 查图中各种直径的圆个数,可以快速查出图上有几种直径,并统计出各种直径的数量-(DEFUN C:cbj () (PRINC "查直径及个数") (setq ss (ssget ((0 . "CIRCLE")))) (setq i 0 n 0 zj-j nil) (repeat (sslength ss) (setq el (entget (ssname ss i))) (setq zj (read (rtos (cdr (assoc 40
Fresnel-zone-platel
- 菲涅尔波带片设计Matlab程序代码 输入波长 Lambda = 632.8nm,设计波带片波长f = 1000mm,k=100 绘制菲涅尔波带片图样 -Fresnel zone plate designed Matlab program codes enter the wavelength Lambda = 632.8nm the design zone plate wavelength f = 1000mm, k = 100 draw a Fresnel zone pla
2_2_P26
- 本程序实现用方程 u_t=f-u+lambda*div (grad u/ |grad u|) 对图像去噪-Image Denoising
python求解常微分方程
- dy=lambda y, x: -2*y+x**2+2*x x=arange(1, 10.5, 0.5) sol=odeint(dy, 2, x)