标签:pre 作用 find 整数 rand 产生 随机 round 相同
% 子数组的寻访 rand(‘state‘,0) x=rand(1,5) %x = 0.9501 0.2311 0.6068 0.4860 0.8913 x(3) %ans = 0.6068 x([1 2 5]) %ans = 0.9501 0.2311 0.8913 x(1:3) %ans = 0.9501 0.2311 0.6068 x(3:end) % ans = 0.6068 0.4860 0.8913 x(3:-1:1) % ans = 0.6068 0.2311 0.9501 x(find(x>0.5)) %ans = 0.9501 0.6068 0.8913 x([1 2 3 4 4 3 2 1]) %ans = 0.9501 0.2311 0.6068 0.4860 0.4860 0.6068 0.2311 0.9501
产生一定范围内的随机数rand: x=round(rand(2)*10)%产生0-10内的随机整数;y=10+rand(2)*5%产生10-15内的随机数。
标签:pre 作用 find 整数 rand 产生 随机 round 相同
原文地址:https://www.cnblogs.com/Ao0216/p/13149781.html