我对 matlab 非常陌生,需要一些帮助来找到正确的语法来执行简单的数据绘图任务。我有一个脚本,可以分析波形并保存一个称为特征的六点向量(其值为 <3791x6 double>)。我需要检查第五个数据空间中的值,记录它们是否高于某个阈值,然后绘制结果(时间与高于/低于阈值)。
这是基本的伪代码。什么是正确的 Matlab 语法?
create a time vs. boolean vector 'threshold'
fifth column of 'features' equals new vector 'data'
for each value in 'data'
if (data[index] > threshold value) threshold[index] = true
else threshold[index] = false
graph(threshold)