MATLAB基础学习(3)——数值数组及运算
2021-05-11 23:28
标签:pre 作用 find 整数 rand 产生 随机 round 相同 产生一定范围内的随机数rand: x=round(rand(2)*10)%产生0-10内的随机整数;y=10+rand(2)*5%产生10-15内的随机数。 MATLAB基础学习(3)——数值数组及运算 标签:pre 作用 find 整数 rand 产生 随机 round 相同 原文地址:https://www.cnblogs.com/Ao0216/p/13149781.html
% 子数组的寻访
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
上一篇:进程与线程
下一篇:javascript入门
文章标题:MATLAB基础学习(3)——数值数组及运算
文章链接:http://soscw.com/index.php/essay/84432.html