swapcities.m
来自「matlabf非常好基于Contourlet变换的水印算法.与小波变换不同的是C」· M 代码 · 共 19 行
M
19 行
function s = swapcities(inputcities,n)
% SWAPCITIES
% s = SWAPCITIES(inputcities,n) returns a set of m cities where n cities
% are randomly swaped.
s = inputcities;
for i = 1 : n
city_1 = round(length(inputcities)*rand(1));
if city_1 < 1
city_1 = 1;
end
city_2 = round(length(inputcities)*rand(1));
if city_2 < 1
city_2 = 1;
end
temp = s(:,city_1);
s(:,city_1) = s(:,city_2);
s(:,city_2) = temp;
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?