vitsqnorm.m
来自「Mathematical Methods by Moor n Stiling.」· M 代码 · 共 12 行
M
12 行
function d = vitsqnorm(branch,input,state,nextstate)
%
% Compute the square norm of the difference between inputs
% This function may be feval'ed for use with the Viterbi algorithm
% (state and nextstate are not used here)
%
% function d = vitsqnorm(branch,input,state,nextstate)
% Copyright 1999 by Todd K. Moon
d = norm(branch-input)^2;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?