need to find local maxima and minima of each row of a 7886 * 321 matrix stored in xlsx file.

1 次查看(过去 30 天)
filename = 'filtereddata.xlsx';
data = xlsread(filename);
Diff1= diff(data,1,2);
[rows, columns] = size(data);
extrema = zeros(7886,321);
for i=1:rows
[Diff1max,imax1,Diff1min,imin1] = extrema(Diff1(i,:));
end
Error: Insufficient number of outputs from right hand side of equal sign to satisfy assignment.

采纳的回答

Voss
Voss 2022-5-1
extrema is a 7886-by-321 matrix of zeros, so this expression:
extrema(Diff1(i,:))
says to get the elements of extrema at the indices given by Diff1(i,:). Those elements will be in a single matrix, so trying to assign them to the four variables Diff1max,imax1,Diff1min,imin1 is what causes the error.
I suspect you intend to use the function extrema from the File Exchange (https://www.mathworks.com/matlabcentral/fileexchange/12275-extrema-m-extrema2-m), in which case you should avoid naming a variable the same name as that function. Use another name for the variable extrema, say my_extrema, if you need that variable (which it's not clear whether you do).
my_extrema = zeros(7886,321); % variable
for i=1:rows
[Diff1max,imax1,Diff1min,imin1] = extrema(Diff1(i,:)); % function call
% do something with the outputs from extrema function
% Diff1max,imax1,Diff1min,imin1
end
  6 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by