how to sum data with condition

42 次查看(过去 30 天)
Berk Gulmez
Berk Gulmez 2019-10-9
回答: Daniel M 2019-10-10
Hi everyone,
I have a dataset ;
x = [1 100; 1 101 ; 1 102; 2 109 ; 2 116 ; 2 118 ; 2 120 ; 3 103; 3 106]
I sorted data with respect to first column in ascending way while sorting second column again in ascending way.
Now, ı want to use functions those I prepared for this data with condition.
For instance, function 1 is used for [1 100] because it is first entry of value "1" in first column (calculation will be made with respect to column 2 value which is "100"). Then function 2 will continue until the end of "1" value in column 1.
when value "2" in column 1 enters, again function 1 calculates related value for "109" in column 2 and function2 will calculate other values for column2.
I cannot built correct loop for this calculation,
Thank you so much in advance.
Regards,

回答(2 个)

John D'Errico
John D'Errico 2019-10-9
Sorry, but it is a really bad idea to have separate functions for each case.
Just pass in the the first column element as an argument to the function that does the computations. Then it is just a branch inside the function, or perhaps a switch/case.
  1 个评论
Berk Gulmez
Berk Gulmez 2019-10-9
Unfortunaltey, I cannot seperate the functions becuase the calculation will be connected to previous row value. For instance,
y = [1 100; 1 101 ; 1 102];
for the first row, function1 answer is 100 (similar to first row)
then in the second row function2 gives 101-100 = 1 value until the first column value turn into "2".

请先登录,再进行评论。


Daniel M
Daniel M 2019-10-10
This is silly. But not difficult to implement.
x = [1 100; 1 101 ; 1 102; 2 109 ; 2 116 ; 2 118 ; 2 120 ; 3 103; 3 106];
y = x(:,1);
[~,startInds] = unique(y); % get the first index of each new number
y(setdiff(1:numel(y),b)) = 0; % set the other numbers to zero
for k = 1:size(x,1)
if y(k)
% code for function1(x(k,2));
else
% code for function2(x(k,2));
end
end

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by