1. 在matlab中,想对一个大数据量的数组进行采样,存储到另一个数组中,除了用for循环,还有别的什么好方法吗
A=[];%A为大量数据数组le=length(A);a=floor(rand*le)+1;B=A(a)%随机采样