필터 지우기
필터 지우기

can anyone please explain me this code ..exactly whats happening here while computing curvature ?

조회 수: 1 (최근 30일)
function k = curvature_central(u)
% compute curvature
[ux,uy] = gradient(u);
normDu = sqrt(ux.^2+uy.^2+1e-10);
Nx = ux./normDu;
Ny = uy./normDu;
[nxx,junk] = gradient(Nx);
[junk,nyy] = gradient(Ny);
k = nxx+nyy;

답변 (0개)

카테고리

Help CenterFile Exchange에서 Math Operations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by