部分代码不能使用matlab来引用零单元格

时间:2014-05-14 15:30:47

标签: matlab

因此,在我的一些帮助下,我的部分代码正常工作,它会找到第一个为零的元素并将其作为参考单元格,以允许我使用它上面的数据来计算平均峰值功率。但是,它不允许我使用与峰值功率相同的平均功率格式。我使用相同的数据只是一个不同的功能。

n= 1; % the following call to find retrieves only the n first element(s) found.
ref= find(data{i}(:,5)==0, n, 'first');
av_pwr(i,1)=nanmean(data {i,1}(1:ref,5));%average power in coloumn E1 in all data with reference to cell found 
peak_pwr(i,1)=nanmin(data {i,1}(1:ref,5)); %preak power in coloumn E1 in all data with reference to cell found

0 个答案:

没有答案