normMat.m 164 B
function [A,rA] = normMat(A)
%NORMMAT Summary of this function goes here
% Detailed explanation goes here
rA = [min(A(:)) max(A(:))];
A = (A-rA(1))/diff(rA);
end
Exceptional GitLab maintenance is scheduled for June 24, 2025. The service will be unavailable between 8:00 am and 9:30 am. Please do not work on the platform until an announcement indicates that maintenance is complete.
function [A,rA] = normMat(A)
%NORMMAT Summary of this function goes here
% Detailed explanation goes here
rA = [min(A(:)) max(A(:))];
A = (A-rA(1))/diff(rA);
end