필터 지우기
필터 지우기

CALCULATE norms: l2 and l1 distances

조회 수: 8 (최근 30일)
long le
long le 2020년 10월 30일
답변: Mayank Bajpai 2020년 10월 30일
I have two vector with different size
x=[1; 2; 5; 6; 1; 9; -5 ];
y=[1; -2; 3; 1; 0; -3 ];
How can I calculate the distance l1, l2 between x vs x, and x vs y?

답변 (1개)

Mayank Bajpai
Mayank Bajpai 2020년 10월 30일
L1 norm: norm(v,1)
L2 norm: norm(v,2)
norm between a and b: norm((b-a),p) where p can be 1,2 or inf.

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by