Filter löschen
Filter löschen

find a mean of values in a field of a struct

2 Ansichten (letzte 30 Tage)
elisa ewin
elisa ewin am 22 Mai 2017
Bearbeitet: Andrei Bobrov am 22 Mai 2017
Hi,
I have a struct (attached) and I want to find the mean for userTouristicTraj(i).pauseTime.pt i = 1:size(userTouristicTraj,2) and I want to save it in userTouristicTraj(i).pauseTime.pt_mean: can you help me? thanks

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 22 Mai 2017
Bearbeitet: Andrei Bobrov am 22 Mai 2017
for ii = 1:numel(userTouristicTraj)
if ~isempty(userTouristicTraj(ii).pauseTime)
userTouristicTraj(ii).pauseTime(1).pt_mean = ...
mean([userTouristicTraj(ii).pauseTime.pt]);
end
end

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by