📄 gramianz.m
字号:
function zt = gramianZ(a,b)
% "Linear and Incremental Acquisition of Invariant Shape Models from
% Image Sequences", Daphna Weinshall and Carlo Tomasi
% Function specified in the computation of the Gramian used in
% nonlinear least squares solution C matrix.
% usage: zt = gramianZ(a,b)
% input:
% a: 1st 3-vector
% b: 2nd 3-vector
% output:
% zt: output of the transposed Z operator.
% history:
% 04/29/04 SLB initial revision
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
zt = [a(1)*b(1) (a(1)*b(2) + a(2)*b(1)) (a(1)*b(3) + a(3)*b(1))...
a(2)*b(2) (a(2)*b(3) + a(3)*b(2)) a(3)*b(3)];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -