how to find the standard deviation of one file which i want to run it for 100 times.

2 views (last 30 days)
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

Answers (1)

Konstantinos Sofos
Konstantinos Sofos on 17 May 2015
Edited: per isakson on 17 May 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);

Categories

Find more on Graph and Network Algorithms 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!