- function [posit_x] = Inter2Max(x,a,b)
-
r_x = size(x,1); % row of x
-
M = max([a-min(x),max(x)-b]);
-
posit_x = zeros(r_x,1); %zeros函数用法: zeros(3) zeros(3,1) ones(3)
-
% 初始化posit_x全为0 初始化的目的是节省处理时间
-
for i = 1: r_x
-
if x(i) < a
-
posit_x(i) = 1-(a-x(i))/M;
-
elseif x(i) > b
-
posit_x(i) = 1-(x(i)-b)/M;
-
else
-
posit_x(i) = 1;
-
end
-
end
- end
相关文章
- 02-27M1芯片mac好用吗?来听听ta们是怎么说的
- 02-27例题2-4 分段计算居民水费[1] p‘ta
- 02-27四、数据类型_4.(1).tuple 元组
- 02-271. GDAL与OpenCV2.X数据转换(适合多光谱和高光谱等多通道的遥感影像)
- 02-27801. 二进制中1的个数(lowbit(n)函数)
- 02-27连接的初步建立和Page Scan interval、Page Scan window、Page Scan Type的选择(为什么有的设备跟手机配对100次失败0-1次,有的确失败3-5次)
- 02-27Python数据分析中 DataFrame axis=0与axis=1的理解
- 02-27Spring Boot2基础1
- 02-27认识Runtime1
- 02-2720200129模拟赛T1 string