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