高阶函数是接受另一个函数作为参数或返回一个函数作为返回值或两者兼有的函数。 const firstOrderFunc () > console.log(hello, i am a first order function);
const higherOrder (ReturnFirstOrderFunc) > ReturnFirstOrderFunc();
higherOrder(firstOrderFunc);
复…
NetCDF(nc)数据读取与格式转换 NetCDF(network Common Data Form)网络通用数据格式是由美国大学大气研究协会(University Corporation for Atmospheric Research,UCAR)的 Unidata 项目科学家针对科学数据的特点开发的,是一种面向数组型并适于网络共享的数据的描述和编码标准…
逆滤波,就是利用傅里叶反卷积。
% deconvolve in frequency domain
Fimg fft2(img,599,599);
FC fft2(C);
R FC ./ Fimg;
r ifft2(R);% show deconvolved Gaussian
figure(1);
subplot(2,3,1), imshow(img), title(image);
subplot(2,3,2), imshow(Z), title(G…