7 lines
67 B
Mathematica
7 lines
67 B
Mathematica
function dst=compareL1(F1, F2)
|
|
|
|
x=abs(F1-F2);
|
|
dst=sum(x);
|
|
|
|
return;
|