How to make a normalized matrix ?

I'm using matlab 2016. when I want to normalize the matrix, the only available syntax is normr and normc. While on the matlab website page there is a normalize syntax. why is there no normalize syntax in my matlab? Then how to normalize matlab manually?

댓글 수: 2

Bhaskar R
Bhaskar R 2021년 6월 29일
The command normalize introduced in MATLAB 2018a version, as per your statment you are using MATLAB2016 version. Upgrade your MATLAB version or you could write your own normalize function as per your requirements
Caecarico Imas
Caecarico Imas 2021년 6월 29일
Thankyou so much.

댓글을 달려면 로그인하십시오.

답변 (1개)

DGM
DGM 2021년 6월 29일
편집: DGM 2021년 6월 29일

0 개 추천

If you just want to normalize the array such that its extrema correspond to [0 1], then for a given array A:
mn = min(A(:));
mx = max(A(:));
B = (A-mn) ./ (mx-mn);
If you have IPT, you can also use the short syntax of the mat2gray() function:
B = mat2gray(A);

카테고리

도움말 센터File Exchange에서 Sparse Matrices에 대해 자세히 알아보기

질문:

2021년 6월 29일

댓글:

2021년 6월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by