嗨,我正在尝试找到一种在 MatLab 中创建矩阵的方法,该矩阵仅在 30 秒内重复一个练习的最大值和最小值。
例如,如果我有数据集:
data = [1 3 5 7 9 6 4 2 3 6 8 10 7 6 4 2 1]
我想要的结果是:
output = [1 9 2 10 1]
该函数只会绘制不断变化的波形的峰值。
我试过的代码如下:
size = length(data); %Get the length of the dataset
x = 1; %Set a counter value
maxplot = 0; %Default, a maximum value has not yet been plotted
for x = 1:size-1
a1 = data(1,x); %Get two adjacent samples of the dataset
a2 = data(1,x+1);
v = 1; %Set the initial column for the max points matrix
while maxplot == 0
if a1 > a2
max(v,1) = a1;
v = v + 1;
maxplot = 1;
end
end
if a1 < a2
maxplot = 0;
end
end
感谢提前回复的人,
杰瑞德。