how to find the standard deviation of one file which i want to run it for 100 times.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello everyone i have a one file in matlab which show me the shortest path and shortest time,how can write another matlab file and ask run the previous matlab file for 100 time and fine standard of deviation of time and standard deviation of path of it?
thank you
0 commentaires
Réponses (1)
Konstantinos Sofos
le 17 Mai 2015
Modifié(e) : per isakson
le 17 Mai 2015
Hi,
Assuming your function is the "PathGen" (because you haven't posted or uploaded anything) with 2 outputs
[Path,Time]=PathGen(varargin)
a solution would be
% Script to run 100 times PathGen with some stats
%
N = 100;
AllTimes = []; % Initialize
AllPaths = []; % Initialize
for n = 1:N
[Path,Time]=PathGen(varargin);
AllPaths = [AllPaths Path] % This will be a matrix size(Path) x N
AllTimes = [AllTimes Time] % This will be a vector 1xN
end
%%Std
Timestd = std(AllTimes );
stdPath= std(AllPaths,0,2); % This will be a vector 1xN
plot(stdPath);
Pathstd = std(stdPath);
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!