Borrar filtros
Borrar filtros

find a mean of values in a field of a struct

2 visualizaciones (últimos 30 días)
elisa ewin
elisa ewin el 22 de Mayo de 2017
Editada: Andrei Bobrov el 22 de Mayo de 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

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 22 de Mayo de 2017
Editada: Andrei Bobrov el 22 de Mayo de 2017
for ii = 1:numel(userTouristicTraj)
if ~isempty(userTouristicTraj(ii).pauseTime)
userTouristicTraj(ii).pauseTime(1).pt_mean = ...
mean([userTouristicTraj(ii).pauseTime.pt]);
end
end

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by