toolbox_diffc.m

来自「张量投票在matlab环境下的仿真。球型张量及棒型张量的仿真」· M 代码 · 共 24 行

M
24
字号
% toolbox_diffc - a toolbox to perform differential calculus
%   on matrix.
%
% Here are the convention :
%   - an image is a 2D array, ie a 2D function.
%   - a vector fiels M is a 3D array, M(:,:,1) is the
%       x component of the vector field.
%   - a tensorial field T is 4D array, T(:,:,i,j)
%       with 1<=i,j<=2, is the component (i,j) of the tensorial field.
%
%   List of the functions:
%       -compute_diff - compute central derivative of a vector.
%       - compute_grad - compute the gradient of an image using central differences
%       - compute_hessian - compute the hessian tensorial field.
%       - compute_laplacian - compute the laplacian of an image.
%       - compute_operator_1 - compute a 1st order differential operator.
%       - compute_operator_2 - compute a 2nd order differential operator.
%       - compute_rigidity_tensor - compute the rigidity tensorial field
%       - plot_tf - plot a tensorial field.
%       - plot_vf - plot a vector field.
%       - perform_tensor_decomp - perform an eigendecomposition.
%   Type 'help <name of the function>' for more informations.
%
%   Copyright (c) 2004 Gabriel Peyr

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?