how can I create a series of same length vectors, extract from each the maximum number, and collect the maximum numbers in a new vector?

1 次查看(过去 30 天)
if true
b=5;
muH=b*sqrt(pi/2);
n=100000; % n different vectors
H= rand(1,1000);
h=(muH/mean(H))* H; %vector
max=zeros(1,n);
for k=1:n %it creates n different vectors each containing 1000 numbers
max=max(h(k)); %extract maximum from each n vectors
end
end

采纳的回答

KSSV
KSSV 2016-7-8
clc; clear all ;
b=5;
muH=b*sqrt(pi/2);
n=100000; % n different vectors
iwant=zeros(1,n);
for k=1:n %it creates n different vectors each containing 1000 numbers
H= rand(1,1000);
h=(muH/mean(H))* H; %vector
iwant(k)=max(h); %extract maximum from each n vectors
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by