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

1 回表示 (過去 30 日間)
nivedita
nivedita 2014 年 4 月 16 日
編集済み: nivedita 2014 年 4 月 16 日
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 Center および File ExchangeMath Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by