finding average between TFunct1,TFunct2,TFunct3
2 views (last 30 days)
Show older comments
TFunct (1:17000,1)=mean(TFunct1(1:17000,1),TFunct2(1:17000,1),TFunct3(1:17000,1));
how to find it and store in TFunct?
0 Comments
Accepted Answer
Julia
on 20 Nov 2014
Hi,
how about this:
TFunct=zeros(1700,1); % or whatever
for i = 1 : 17000
TFunct(i,1)=mean([TFunct1(i,1),TFunct2(i,1),TFunct3(i,1)]);
end
or without a loop you can use this:
>> A=[1 2;2 3;3 4;4 5;5 6]
A =
1 2
2 3
3 4
4 5
5 6
>> B=[2 3;3 4;4 5;5 6;6 7]
B =
2 3
3 4
4 5
5 6
6 7
>> C=[3 4;4 5;5 6;6 7;7 8]
C =
3 4
4 5
5 6
6 7
7 8
>> D=[A(:,1)';B(:,1)';C(:,1)']
D =
1 2 3 4 5
2 3 4 5 6
3 4 5 6 7
>> mean(D)
ans =
2 3 4 5 6
0 Comments
More Answers (0)
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!